aboutsummaryrefslogtreecommitdiffstats
path: root/src/gestures.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gestures.h')
-rw-r--r--src/gestures.h11
1 files changed, 1 insertions, 10 deletions
diff --git a/src/gestures.h b/src/gestures.h
index 0e2a49e..0428195 100644
--- a/src/gestures.h
+++ b/src/gestures.h
@@ -24,25 +24,16 @@
#include "mtouch.h"
-////////////////////////////////////////////////////////
-
#define GS_BUTTON 0
#define GS_MOVE 1
#define GS_VSCROLL 2
#define GS_HSCROLL 3
-////////////////////////////////////////////////////////
-
struct Gestures {
- unsigned type;
+ unsigned type, btmask, btdata;
int dx, dy;
- button_t btmask, btdata;
};
-////////////////////////////////////////////////////////
-
void extract_gestures(struct Gestures *gs, struct MTouch* mt);
-////////////////////////////////////////////////////////
-
#endif