labwc/include/config/touch.h
John Lindgren c9b576982d include: add missing header dependencies
Ensure that headers compile correctly regardless of include order.
2025-07-29 21:51:56 +01:00

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 */