config: introduce touch config structure

This commit is contained in:
Jens Peters 2024-01-19 09:28:55 +01:00
parent 609e41f53d
commit 7c376d8410
No known key found for this signature in database

14
include/config/touch.h Normal file
View file

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