mirror of
https://git.planet-casio.com/Lephenixnoir/gint.git
synced 2025-04-04 09:37:10 +02:00
17 lines
336 B
C
17 lines
336 B
C
#ifndef GINT_TOUCH_DRIVER_H
|
|
#define GINT_TOUCH_DRIVER_H 1
|
|
|
|
#include <gint/keyboard.h>
|
|
#include <gint/touch.h>
|
|
|
|
/* _touch_drv_info() - internal driver information */
|
|
struct _touch_drv_info
|
|
{
|
|
touch_calib calibration;
|
|
key_event_t prev_evt;
|
|
struct {
|
|
bool prev_is_dual;
|
|
} adinfo;
|
|
};
|
|
|
|
#endif /* GINT_TOUCH_DRIVER_H */
|