aboutsummaryrefslogtreecommitdiff
path: root/include/backend/libinput
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-06-09 13:47:35 -0400
committerDrew DeVault <sir@cmpwn.com>2017-06-13 08:10:36 -0400
commit019fff06be1ad460ac427bea070fbe7a61c09ea8 (patch)
tree0fad4b4ce6675d41856bb9f45212509ae23e5941 /include/backend/libinput
parentaf69591e6233c83ed749b2f51922edb45bdaef2e (diff)
Fix issues, flesh out event handling somewhat
Diffstat (limited to 'include/backend/libinput')
-rw-r--r--include/backend/libinput/backend.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/backend/libinput/backend.h b/include/backend/libinput/backend.h
index bafe76ed..a23a45ac 100644
--- a/include/backend/libinput/backend.h
+++ b/include/backend/libinput/backend.h
@@ -12,10 +12,13 @@ struct wlr_backend_state {
struct wlr_udev *udev;
struct wl_display *display;
- struct libinput *handle;
+ struct libinput *libinput;
struct wl_event_source *input_event;
list_t *devices;
};
+void wlr_libinput_event(struct wlr_backend_state *state,
+ struct libinput_event *event);
+
#endif