aboutsummaryrefslogtreecommitdiffstats
path: root/src/mtouch.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mtouch.h')
-rw-r--r--src/mtouch.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mtouch.h b/src/mtouch.h
index a945162..d036a8f 100644
--- a/src/mtouch.h
+++ b/src/mtouch.h
@@ -9,12 +9,14 @@
struct MTouch {
struct Capabilities caps;
struct HWData hw;
+ bool grabbed;
};
////////////////////////////////////////////////////////
int configure_mtouch(struct MTouch *mt, int fd);
-int init_mtouch(struct MTouch *mt);
+int open_mtouch(struct MTouch *mt, int fd);
+void close_mtouch(struct MTouch *mt, int fd);
////////////////////////////////////////////////////////