aboutsummaryrefslogtreecommitdiff
path: root/include/rootston/server.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/rootston/server.h')
-rw-r--r--include/rootston/server.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/include/rootston/server.h b/include/rootston/server.h
deleted file mode 100644
index f48549f2..00000000
--- a/include/rootston/server.h
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef _ROOTSTON_SERVER_H
-#define _ROOTSTON_SERVER_H
-
-#include <wayland-server-core.h>
-#include <wlr/backend.h>
-#include <wlr/backend/session.h>
-#include <wlr/config.h>
-#include <wlr/render/wlr_renderer.h>
-#include <wlr/types/wlr_data_device.h>
-#if 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