aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/backend/multi.h2
-rw-r--r--include/wlr/backend/multi.h5
2 files changed, 5 insertions, 2 deletions
diff --git a/include/backend/multi.h b/include/backend/multi.h
index 82f85016..2798048d 100644
--- a/include/backend/multi.h
+++ b/include/backend/multi.h
@@ -11,6 +11,8 @@ struct wlr_multi_backend {
struct wlr_session *session;
struct wl_list backends;
+
+ struct wl_listener display_destroy;
};
#endif
diff --git a/include/wlr/backend/multi.h b/include/wlr/backend/multi.h
index 5559f2c1..e56b07b1 100644
--- a/include/wlr/backend/multi.h
+++ b/include/wlr/backend/multi.h
@@ -4,9 +4,10 @@
#include <wlr/backend.h>
#include <wlr/backend/session.h>
-struct wlr_backend *wlr_multi_backend_create(struct wlr_session *session);
+struct wlr_backend *wlr_multi_backend_create(struct wl_display *display,
+ struct wlr_session *session);
void wlr_multi_backend_add(struct wlr_backend *multi,
- struct wlr_backend *backend);
+ struct wlr_backend *backend);
bool wlr_backend_is_multi(struct wlr_backend *backend);