mirror of
				https://github.com/labwc/labwc.git
				synced 2025-11-03 09:01:51 -05:00 
			
		
		
		
	There were some missing headers like <stddef.h> for `NULL`, <wayland-util.h> for `wl_link` and <stdbool.h> for `true`/`false`. Also this commit fixes that `labwc.h` and `ime.h` included each other.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			393 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0-only */
 | 
						|
#ifndef LABWC_TOUCH_CONFIG_H
 | 
						|
#define LABWC_TOUCH_CONFIG_H
 | 
						|
 | 
						|
#include <stdint.h>
 | 
						|
#include <wayland-util.h>
 | 
						|
 | 
						|
struct touch_config_entry {
 | 
						|
	char *device_name;
 | 
						|
	char *output_name;
 | 
						|
 | 
						|
	struct wl_list link;     /* struct rcxml.touch_configs */
 | 
						|
};
 | 
						|
 | 
						|
struct touch_config_entry *touch_find_config_for_device(char *device_name);
 | 
						|
 | 
						|
#endif /* LABWC_TOUCH_CONFIG_H */
 |