Minor Setsu Fixes

This commit is contained in:
Florian Märkl 2020-07-02 21:37:52 +02:00
commit a688974c89
No known key found for this signature in database
GPG key ID: 125BC8A5A6A1E857
3 changed files with 30 additions and 4 deletions

View file

@ -20,6 +20,10 @@
#include <stdint.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct setsu_t Setsu;
typedef struct setsu_device_t SetsuDevice;
typedef int SetsuTrackingId;
@ -75,4 +79,8 @@ const char *setsu_device_get_path(SetsuDevice *dev);
uint32_t setsu_device_get_width(SetsuDevice *dev);
uint32_t setsu_device_get_height(SetsuDevice *dev);
#ifdef __cplusplus
}
#endif
#endif