mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			185 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			185 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0-only */
 | 
						|
#ifndef LABWC_BORDER_H
 | 
						|
#define LABWC_BORDER_H
 | 
						|
 | 
						|
struct border {
 | 
						|
	int top;
 | 
						|
	int right;
 | 
						|
	int bottom;
 | 
						|
	int left;
 | 
						|
};
 | 
						|
 | 
						|
#endif /* LABWC_BORDER_H */
 |