]> git.mdlowis.com Git - proto/labwc.git/commitdiff
config: introduce touch config structure
authorJens Peters <jp7677@gmail.com>
Fri, 19 Jan 2024 08:28:55 +0000 (09:28 +0100)
committerJohan Malm <johanmalm@users.noreply.github.com>
Mon, 22 Jan 2024 21:50:18 +0000 (21:50 +0000)
include/config/touch.h [new file with mode: 0644]

diff --git a/include/config/touch.h b/include/config/touch.h
new file mode 100644 (file)
index 0000000..6b453ff
--- /dev/null
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+#ifndef LABWC_TOUCH_CONFIG_H
+#define LABWC_TOUCH_CONFIG_H
+
+#include <stdint.h>
+
+struct touch_config_entry {
+       char *device_name;
+       char *output_name;
+
+       struct wl_list link;     /* struct rcxml.touch_configs */
+};
+
+#endif /* LABWC_TOUCH_CONFIG_H */