aboutsummaryrefslogtreecommitdiff
path: root/include/backend/multi.h
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-05 23:11:26 -0400
committerGitHub <noreply@github.com>2017-08-05 23:11:26 -0400
commitf95c02eebe54785a4f64332f7e574dddff7e3669 (patch)
tree0e29dfa81a30d6172c558d2b5df6d95f31a32b20 /include/backend/multi.h
parent41b98f21e50a6d57ba4b7fd8ba90066bba614e6a (diff)
parent5bf61ca7edb658737f3ccbaed0a99f4779d329bb (diff)
Merge pull request #29 from ascent12/session
Moved session into backend/session and changed ownership
Diffstat (limited to 'include/backend/multi.h')
-rw-r--r--include/backend/multi.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/backend/multi.h b/include/backend/multi.h
index efaf61b9..5ac9cc1d 100644
--- a/include/backend/multi.h
+++ b/include/backend/multi.h
@@ -3,10 +3,14 @@
#include <wlr/backend/interface.h>
#include <wlr/backend/multi.h>
+#include <wlr/backend/udev.h>
#include <wlr/util/list.h>
+#include <wlr/backend/session.h>
struct wlr_backend_state {
struct wlr_backend *backend;
+ struct wlr_session *session;
+ struct wlr_udev *udev;
list_t *backends;
};