mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
18 lines
423 B
C
18 lines
423 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
#ifndef LABWC_TOUCH_CONFIG_H
|
|
#define LABWC_TOUCH_CONFIG_H
|
|
|
|
#include <stdbool.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 */
|