mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	Also renames create to init. We'll use create for anything that allocates and init for anything that takes a pointer and initializes it.
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			623 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _WLR_BACKEND_H
 | 
						|
#define _WLR_BACKEND_H
 | 
						|
 | 
						|
#include <wayland-server.h>
 | 
						|
#include <wlr/backend/session.h>
 | 
						|
#include <wlr/egl.h>
 | 
						|
 | 
						|
struct wlr_backend_impl;
 | 
						|
 | 
						|
struct wlr_backend {
 | 
						|
	const struct wlr_backend_impl *impl;
 | 
						|
 | 
						|
	struct {
 | 
						|
		struct wl_signal input_add;
 | 
						|
		struct wl_signal input_remove;
 | 
						|
		struct wl_signal output_add;
 | 
						|
		struct wl_signal output_remove;
 | 
						|
	} events;
 | 
						|
};
 | 
						|
 | 
						|
struct wlr_backend *wlr_backend_autocreate(struct wl_display *display);
 | 
						|
bool wlr_backend_start(struct wlr_backend *backend);
 | 
						|
void wlr_backend_destroy(struct wlr_backend *backend);
 | 
						|
struct wlr_egl *wlr_backend_get_egl(struct wlr_backend *backend);
 | 
						|
 | 
						|
#endif
 |