mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			225 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			225 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0-only */
 | 
						|
#ifndef LABWC_THREE_STATE_H
 | 
						|
#define LABWC_THREE_STATE_H
 | 
						|
 | 
						|
enum three_state {
 | 
						|
	LAB_STATE_UNSPECIFIED = 0,
 | 
						|
	LAB_STATE_ENABLED,
 | 
						|
	LAB_STATE_DISABLED
 | 
						|
};
 | 
						|
 | 
						|
#endif /* LABWC_THREE_STATE_H */
 |