summaryrefslogtreecommitdiff
path: root/src/frame-impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frame-impl.h')
-rw-r--r--src/frame-impl.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/frame-impl.h b/src/frame-impl.h
new file mode 100644
index 0000000..c31f7da
--- /dev/null
+++ b/src/frame-impl.h
@@ -0,0 +1,18 @@
+#ifndef _FRAME_IMPL_H
+#define _FRAME_IMPL_H
+
+#include <utouch/frame.h>
+
+struct utouch_frame_engine {
+ int num_frames;
+ int num_slots;
+ int hold_ms;
+ int frame;
+ int slot;
+ float max_orient;
+ struct utouch_surface *surface;
+ struct utouch_frame **frames;
+ struct utouch_frame *next;
+};
+
+#endif