mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			275 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			275 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef RCXML_H
 | 
						|
#define RCXML_H
 | 
						|
 | 
						|
#include <stdio.h>
 | 
						|
#include <stdbool.h>
 | 
						|
 | 
						|
struct rcxml {
 | 
						|
	bool client_side_decorations;
 | 
						|
};
 | 
						|
 | 
						|
extern struct rcxml rc;
 | 
						|
 | 
						|
void rcxml_init(struct rcxml *rc);
 | 
						|
void rcxml_read(const char *filename);
 | 
						|
void rcxml_set_verbose(void);
 | 
						|
 | 
						|
#endif /* RCXML_H */
 |