2017-09-23 10:26:01 +02:00
|
|
|
#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>
|
|
|
|
|
2017-08-12 17:43:36 +02:00
|
|
|
struct wlr_multi_backend {
|
|
|
|
struct wlr_backend backend;
|
|
|
|
|
2017-10-14 21:55:45 +02:00
|
|
|
struct wl_list backends;
|
2017-12-20 11:54:41 +01:00
|
|
|
|
2017-12-21 14:13:36 +01:00
|
|
|
struct wl_listener display_destroy;
|
|
|
|
|
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
|