mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			371 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _WLR_MULTI_BACKEND_INTERNAL
 | 
						|
#define _WLR_MULTI_BACKEND_INTERNAL
 | 
						|
 | 
						|
#include <wlr/backend/interface.h>
 | 
						|
#include <wlr/backend/multi.h>
 | 
						|
#include <wlr/backend/udev.h>
 | 
						|
#include <wlr/util/list.h>
 | 
						|
#include <wlr/backend/session.h>
 | 
						|
 | 
						|
struct wlr_multi_backend {
 | 
						|
	struct wlr_backend backend;
 | 
						|
 | 
						|
	struct wlr_session *session;
 | 
						|
	struct wlr_udev *udev;
 | 
						|
	list_t *backends;
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |