mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			543 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			543 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef WLR_SESSION_INTERFACE_H
 | 
						|
#define WLR_SESSION_INTERFACE_H
 | 
						|
 | 
						|
#include <wlr/session.h>
 | 
						|
 | 
						|
struct session_interface {
 | 
						|
	struct wlr_session *(*start)(struct wl_display *disp);
 | 
						|
	void (*finish)(struct wlr_session *session);
 | 
						|
	int (*open)(struct wlr_session *restrict session,
 | 
						|
		const char *restrict path);
 | 
						|
	void (*close)(struct wlr_session *session, int fd);
 | 
						|
	bool (*change_vt)(struct wlr_session *session, int vt);
 | 
						|
};
 | 
						|
 | 
						|
extern const struct session_interface session_logind_iface;
 | 
						|
extern const struct session_interface session_direct_iface;
 | 
						|
 | 
						|
#endif
 |