mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-12-02 01:05:58 +01:00
ca45f4490c
The documentation for wayland-server.h says: > Use of this header file is discouraged. Prefer including > wayland-server-core.h instead, which does not include the server protocol > header and as such only defines the library PI, excluding the deprecated API > below. Replacing wayland-server.h with wayland-server-core.h allows us to drop the WL_HIDE_DEPRECATED declaration.
37 lines
828 B
C
37 lines
828 B
C
#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
|