From 9d64b56367ac512cb4e97f6947d55905b69bed7a Mon Sep 17 00:00:00 2001 From: Jens Peters Date: Fri, 19 Jan 2024 09:28:55 +0100 Subject: [PATCH] config: introduce touch config structure --- include/config/touch.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 include/config/touch.h diff --git a/include/config/touch.h b/include/config/touch.h new file mode 100644 index 00000000..6b453fff --- /dev/null +++ b/include/config/touch.h @@ -0,0 +1,14 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +#ifndef LABWC_TOUCH_CONFIG_H +#define LABWC_TOUCH_CONFIG_H + +#include + +struct touch_config_entry { + char *device_name; + char *output_name; + + struct wl_list link; /* struct rcxml.touch_configs */ +}; + +#endif /* LABWC_TOUCH_CONFIG_H */