You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							30 lines
						
					
					
						
							672 B
						
					
					
				
			
		
		
	
	
							30 lines
						
					
					
						
							672 B
						
					
					
				#ifndef _WLR_BACKEND_H
 | 
						|
#define _WLR_BACKEND_H
 | 
						|
 | 
						|
#include <wayland-server.h>
 | 
						|
 | 
						|
struct wlr_backend_impl;
 | 
						|
struct wlr_backend_state;
 | 
						|
 | 
						|
struct wlr_backend {
 | 
						|
	const struct wlr_backend_impl *impl;
 | 
						|
	struct wlr_backend_state *state;
 | 
						|
 | 
						|
	struct {
 | 
						|
		struct wl_signal output_add;
 | 
						|
		struct wl_signal output_remove;
 | 
						|
		struct wl_signal keyboard_add;
 | 
						|
		struct wl_signal keyboard_remove;
 | 
						|
		struct wl_signal pointer_add;
 | 
						|
		struct wl_signal pointer_remove;
 | 
						|
		struct wl_signal touch_add;
 | 
						|
		struct wl_signal touch_remove;
 | 
						|
	} events;
 | 
						|
};
 | 
						|
 | 
						|
struct wlr_backend *wlr_backend_autocreate();
 | 
						|
bool wlr_backend_init(struct wlr_backend *backend);
 | 
						|
void wlr_backend_destroy(struct wlr_backend *backend);
 | 
						|
 | 
						|
#endif
 |