aboutsummaryrefslogtreecommitdiff
path: root/include/wlr
diff options
context:
space:
mode:
authorScott Anderson <ascent12@hotmail.com>2017-05-14 01:12:47 +1200
committerScott Anderson <ascent12@hotmail.com>2017-05-14 12:42:49 +1200
commit058b8bdf2755da16d38dccc8de715a984fdd620c (patch)
tree00f810c56fc1ae04125bc003df45e80f01448e7f /include/wlr
parentc88f25258027257e1f6c56e9f76b8fc1feaedbd4 (diff)
Working commit
Diffstat (limited to 'include/wlr')
-rw-r--r--include/wlr/session.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/include/wlr/session.h b/include/wlr/session.h
index 36521a73..4dfb026c 100644
--- a/include/wlr/session.h
+++ b/include/wlr/session.h
@@ -3,7 +3,14 @@
#include <wayland-server.h>
-struct wlr_session;
+struct session_interface;
+
+struct wlr_session {
+ const struct session_interface *iface;
+
+ struct wl_signal device_paused;
+ struct wl_signal device_resumed;
+};
struct wlr_session *wlr_session_start(struct wl_display *disp);
void wlr_session_finish(struct wlr_session *session);