labwc/include/config/touch.h
2024-10-29 19:22:01 +00:00

18 lines
422 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_TOUCH_CONFIG_H
#define LABWC_TOUCH_CONFIG_H
#include <stdint.h>
#include <wayland-util.h>
struct touch_config_entry {
char *device_name;
char *output_name;
bool force_mouse_emulation;
struct wl_list link; /* struct rcxml.touch_configs */
};
struct touch_config_entry *touch_find_config_for_device(char *device_name);
#endif /* LABWC_TOUCH_CONFIG_H */