config: introduce touch config structure

This commit is contained in:
Jens Peters 2024-01-19 09:28:55 +01:00 committed by Johan Malm
parent 6def1319d1
commit 9d64b56367

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