2017-09-23 10:26:01 +02:00
|
|
|
#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
|
|
|
|
2017-08-12 11:43:36 -04:00
|
|
|
struct wlr_multi_backend {
|
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-10-14 22:55:45 +03:00
|
|
|
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
|