mirror of
https://github.com/swaywm/sway.git
synced 2025-04-04 11:27:47 +03:00
Closes: https://github.com/swaywm/sway/issues/7890
(cherry picked from commit 95265fba59
)
14 lines
425 B
C
14 lines
425 B
C
#ifndef _SWAY_INPUT_LIBINPUT_H
|
|
#define _SWAY_INPUT_LIBINPUT_H
|
|
#include "sway/input/input-manager.h"
|
|
|
|
bool sway_input_configure_libinput_device(struct sway_input_device *device);
|
|
|
|
void sway_input_configure_libinput_device_send_events(
|
|
struct sway_input_device *device);
|
|
|
|
void sway_input_reset_libinput_device(struct sway_input_device *device);
|
|
|
|
bool sway_libinput_device_is_builtin(struct sway_input_device *device);
|
|
|
|
#endif
|