mirror of
https://github.com/labwc/labwc.git
synced 2025-11-01 22:58:47 -04:00
15 lines
308 B
C
15 lines
308 B
C
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||
|
|
#ifndef LABWC_TABLET_TOOL_CONFIG_H
|
||
|
|
#define LABWC_TABLET_TOOL_CONFIG_H
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
enum motion {
|
||
|
|
LAB_TABLET_MOTION_ABSOLUTE = 0,
|
||
|
|
LAB_TABLET_MOTION_RELATIVE,
|
||
|
|
};
|
||
|
|
|
||
|
|
enum motion tablet_parse_motion(const char *name);
|
||
|
|
|
||
|
|
#endif /* LABWC_TABLET_TOOL_CONFIG_H */
|