1
0
Fork 0
mirror of https://github.com/hyprwm/wlroots-hyprland.git synced 2025-02-15 09:42:08 +01:00
wlroots-hyprland/include/backend/multi.h

23 lines
396 B
C
Raw Normal View History

#ifndef BACKEND_MULTI_H
#define BACKEND_MULTI_H
2017-06-12 22:22:40 -04:00
2018-02-12 21:29:23 +01:00
#include <wayland-util.h>
2017-06-12 22:22:40 -04:00
#include <wlr/backend/interface.h>
#include <wlr/backend/multi.h>
2017-07-11 19:18:34 +12:00
#include <wlr/backend/session.h>
2017-06-12 22:22:40 -04:00
struct wlr_multi_backend {
struct wlr_backend backend;
struct wl_list backends;
2017-12-20 05:54:41 -05:00
2017-12-21 08:13:36 -05:00
struct wl_listener display_destroy;
2017-12-20 05:54:41 -05:00
struct {
struct wl_signal backend_add;
struct wl_signal backend_remove;
} events;
2017-06-12 22:22:40 -04:00
};
#endif