From: Jens Peters Date: Fri, 19 Jan 2024 08:28:55 +0000 (+0100) Subject: config: introduce touch config structure X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=9d64b56367ac512cb4e97f6947d55905b69bed7a;p=proto%2Flabwc.git config: introduce touch config structure --- 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 */