wlroots-hyprland/include/backend/multi.h

22 lines
366 B
C
Raw Permalink Normal View History

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