blob: f0e50fc071ff1ca4a637e453edef600c1e234098 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef BACKEND_MULTI_H
#define BACKEND_MULTI_H
#include <wlr/backend/interface.h>
#include <wlr/backend/multi.h>
#include <wlr/backend/session.h>
#include <wayland-util.h>
struct wlr_multi_backend {
struct wlr_backend backend;
struct wl_list backends;
struct wl_listener display_destroy;
};
#endif
|