diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-19 15:16:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-19 15:16:40 -0400 |
commit | fa4a04da223aadcc1feba7fe133b0f44ac01e95a (patch) | |
tree | c5b5a57ddf085993a16a5c9f29076b90f3baccf1 /include/wlr/backend/libinput.h | |
parent | 325a331425c1771d16fa90d099fa33f3ab8772f3 (diff) | |
parent | 632a04f1b7dea35f46a2fa478bf53869854a1b5e (diff) |
Merge pull request #11 from SirCmpwn/libinput
[WIP] libinput backend
Diffstat (limited to 'include/wlr/backend/libinput.h')
-rw-r--r-- | include/wlr/backend/libinput.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/wlr/backend/libinput.h b/include/wlr/backend/libinput.h new file mode 100644 index 00000000..7108f42c --- /dev/null +++ b/include/wlr/backend/libinput.h @@ -0,0 +1,15 @@ +#ifndef WLR_BACKEND_LIBINPUT_H +#define WLR_BACKEND_LIBINPUT_H + +#include <libinput.h> +#include <wayland-server.h> +#include <wlr/session.h> +#include <wlr/backend.h> +#include <wlr/backend/udev.h> +#include <wlr/types.h> + +struct wlr_backend *wlr_libinput_backend_create(struct wl_display *display, + struct wlr_session *session, struct wlr_udev *udev); +struct libinput_device *wlr_libinput_get_device_handle(struct wlr_input_device *dev); + +#endif |