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