diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-08-12 13:51:47 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-08-12 13:51:47 -0400 |
commit | c95a108d2f68ec7a3325db418f9c2f32f6677f0b (patch) | |
tree | 0479fa458c87cb2ae8d310d9cfe83a9f06a1fa5e /include/backend/libinput.h | |
parent | 81cd90297d96c68ac7794b1bb877f3b77b04188e (diff) |
Update libinput backend with new state design
Diffstat (limited to 'include/backend/libinput.h')
-rw-r--r-- | include/backend/libinput.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/backend/libinput.h b/include/backend/libinput.h index 0a93e1f6..84914460 100644 --- a/include/backend/libinput.h +++ b/include/backend/libinput.h @@ -7,7 +7,7 @@ #include <wlr/util/list.h> #include "backend/udev.h" -struct wlr_libinput_backend_state { +struct wlr_libinput_backend { struct wlr_backend backend; struct wlr_session *session; @@ -26,7 +26,7 @@ struct wlr_input_device_state { struct libinput_device *handle; }; -void wlr_libinput_event(struct wlr_backend_state *state, +void wlr_libinput_event(struct wlr_libinput_backend *state, struct libinput_event *event); struct wlr_input_device *get_appropriate_device( |