diff options
author | Drew DeVault <sir@cmpwn.com> | 2017-06-09 11:38:38 -0400 |
---|---|---|
committer | Drew DeVault <sir@cmpwn.com> | 2017-06-13 08:10:36 -0400 |
commit | af69591e6233c83ed749b2f51922edb45bdaef2e (patch) | |
tree | 991d104756067368c2ac7e85a8a94844d8b5926b /include/wlr/backend | |
parent | 1262f1400c6f443a1460e168c7adc25997247cde (diff) |
Add error handling and init in backend_autocreate
Diffstat (limited to 'include/wlr/backend')
-rw-r--r-- | include/wlr/backend/libinput.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/wlr/backend/libinput.h b/include/wlr/backend/libinput.h new file mode 100644 index 00000000..1e8c3555 --- /dev/null +++ b/include/wlr/backend/libinput.h @@ -0,0 +1,12 @@ +#ifndef WLR_BACKEND_LIBINPUT_H +#define WLR_BACKEND_LIBINPUT_H + +#include <wayland-server.h> +#include <wlr/session.h> +#include <wlr/backend.h> +#include <wlr/backend/udev.h> + +struct wlr_backend *wlr_libinput_backend_create(struct wl_display *display, + struct wlr_session *session, struct wlr_udev *udev); + +#endif |