mirror of
https://github.com/labwc/labwc.git
synced 2025-11-02 09:01:47 -05:00
16 lines
367 B
C
16 lines
367 B
C
/* 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 */
|
|
};
|
|
|
|
struct touch_config_entry *touch_find_config_for_device(char *device_name);
|
|
|
|
#endif /* LABWC_TOUCH_CONFIG_H */
|