Fix issues, flesh out event handling somewhat

This commit is contained in:
Drew DeVault 2017-06-09 13:47:35 -04:00
parent af69591e62
commit 019fff06be
2 changed files with 25 additions and 8 deletions

View file

@ -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