diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/backend/libinput/backend.h | 5 |
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 |