aboutsummaryrefslogtreecommitdiff
path: root/include/backend/multi.h
diff options
context:
space:
mode:
authorTony Crisci <tony@dubstepdish.com>2017-12-21 18:40:54 -0500
committerGitHub <noreply@github.com>2017-12-21 18:40:54 -0500
commit0a370c529806077a11638e7fa856d5fbb539496b (patch)
treeb00eb27649a61035af82b735673e6fd780862f9b /include/backend/multi.h
parent1a96ce0c53c84295d33b143e1b6cf02cb7017d50 (diff)
parent4cec7f54e24a58fd9756395ce64a5bd73f412c9e (diff)
Merge pull request #506 from acrisci/multi-backend-fixes
[wip] multibackend fixes
Diffstat (limited to 'include/backend/multi.h')
-rw-r--r--include/backend/multi.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/include/backend/multi.h b/include/backend/multi.h
index 2798048d..3363c608 100644
--- a/include/backend/multi.h
+++ b/include/backend/multi.h
@@ -9,10 +9,14 @@
struct wlr_multi_backend {
struct wlr_backend backend;
- struct wlr_session *session;
struct wl_list backends;
struct wl_listener display_destroy;
+
+ struct {
+ struct wl_signal backend_add;
+ struct wl_signal backend_remove;
+ } events;
};
#endif