mirror of
https://github.com/hyprwm/wlroots-hyprland.git
synced 2024-11-02 11:55:59 +01:00
de66bdb867
Resolves #80
17 lines
527 B
C
17 lines
527 B
C
#ifndef WLR_BACKEND_LIBINPUT_H
|
|
#define WLR_BACKEND_LIBINPUT_H
|
|
|
|
#include <libinput.h>
|
|
#include <wayland-server.h>
|
|
#include <wlr/backend/session.h>
|
|
#include <wlr/backend.h>
|
|
#include <wlr/backend/udev.h>
|
|
#include <wlr/types/wlr_input_device.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);
|
|
|
|
bool wlr_backend_is_libinput(struct wlr_backend *backend);
|
|
|
|
#endif
|