mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			628 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef WLR_SESSION_H
 | 
						|
#define WLR_SESSION_H
 | 
						|
 | 
						|
#include <stdbool.h>
 | 
						|
#include <wayland-server.h>
 | 
						|
#include <sys/types.h>
 | 
						|
 | 
						|
struct session_impl;
 | 
						|
 | 
						|
struct wlr_session {
 | 
						|
	const struct session_impl *impl;
 | 
						|
	struct wl_signal session_signal;
 | 
						|
	bool active;
 | 
						|
 | 
						|
	int drm_fd;
 | 
						|
	unsigned vtnr;
 | 
						|
	char seat[8];
 | 
						|
};
 | 
						|
 | 
						|
struct wlr_session *wlr_session_start(struct wl_display *disp);
 | 
						|
void wlr_session_finish(struct wlr_session *session);
 | 
						|
int wlr_session_open_file(struct wlr_session *session, const char *path);
 | 
						|
void wlr_session_close_file(struct wlr_session *session, int fd);
 | 
						|
bool wlr_session_change_vt(struct wlr_session *session, unsigned vt);
 | 
						|
 | 
						|
#endif
 |