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 @@
1#ifndef _FRAME_IMPL_H
2#define _FRAME_IMPL_H
3
4#include <utouch/frame.h>
5
6struct utouch_frame_engine {
7 int num_frames;
8 int num_slots;
9 int hold_ms;
10 int frame;
11 int slot;
12 float max_orient;
13 struct utouch_surface *surface;
14 struct utouch_frame **frames;
15 struct utouch_frame *next;
16};
17
18#endif