mirror of
				https://gitlab.freedesktop.org/wlroots/wlroots.git
				synced 2025-11-03 09:01:40 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
	
		
			813 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
	
		
			813 B
		
	
	
	
		
			C
		
	
	
	
	
	
#ifndef _ROOTSTON_SERVER_H
 | 
						|
#define _ROOTSTON_SERVER_H
 | 
						|
 | 
						|
#include <wayland-server.h>
 | 
						|
#include <wlr/backend.h>
 | 
						|
#include <wlr/backend/session.h>
 | 
						|
#include <wlr/config.h>
 | 
						|
#include <wlr/render.h>
 | 
						|
#include <wlr/types/wlr_data_device.h>
 | 
						|
#ifdef WLR_HAS_XWAYLAND
 | 
						|
#include <wlr/xwayland.h>
 | 
						|
#endif
 | 
						|
#include "rootston/config.h"
 | 
						|
#include "rootston/desktop.h"
 | 
						|
#include "rootston/input.h"
 | 
						|
 | 
						|
struct roots_server {
 | 
						|
	/* Rootston resources */
 | 
						|
	struct roots_config *config;
 | 
						|
	struct roots_desktop *desktop;
 | 
						|
	struct roots_input *input;
 | 
						|
 | 
						|
	/* Wayland resources */
 | 
						|
	struct wl_display *wl_display;
 | 
						|
	struct wl_event_loop *wl_event_loop;
 | 
						|
 | 
						|
	/* WLR tools */
 | 
						|
	struct wlr_backend *backend;
 | 
						|
	struct wlr_renderer *renderer;
 | 
						|
 | 
						|
	/* Global resources */
 | 
						|
	struct wlr_data_device_manager *data_device_manager;
 | 
						|
};
 | 
						|
 | 
						|
extern struct roots_server server;
 | 
						|
 | 
						|
#endif
 |