labwc/include/config/touch.h
Hiroaki Yamamoto d64e3915a3
Fix some header includes detected by clangd
There were some missing headers like <stddef.h> for `NULL`, <wayland-util.h>
for `wl_link` and <stdbool.h> for `true`/`false`.

Also this commit fixes that `labwc.h` and `ime.h` included each other.
2024-04-21 21:58:57 +02:00

17 lines
393 B
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef LABWC_TOUCH_CONFIG_H
#define LABWC_TOUCH_CONFIG_H
#include <stdint.h>
#include <wayland-util.h>
struct touch_config_entry {
char *device_name;
char *output_name;
struct wl_list link; /* struct rcxml.touch_configs */
};
struct touch_config_entry *touch_find_config_for_device(char *device_name);
#endif /* LABWC_TOUCH_CONFIG_H */