mirror of
https://github.com/NickHu/sway
synced 2024-12-27 21:58:11 +01:00
9d99bb956f
Moved `libinput_config` to the callers of `sway_input_configure_libinput_device` so that we send the event after the added event.
11 lines
333 B
C
11 lines
333 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_reset_libinput_device(struct sway_input_device *device);
|
|
|
|
bool sway_libinput_device_is_builtin(struct sway_input_device *device);
|
|
|
|
#endif
|