summaryrefslogtreecommitdiff
path: root/src/xNestedMouse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xNestedMouse.h')
-rw-r--r--src/xNestedMouse.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/xNestedMouse.h b/src/xNestedMouse.h
index 4b7a07d..53d4ad5 100644
--- a/src/xNestedMouse.h
+++ b/src/xNestedMouse.h
@@ -1,26 +1 @@
-
-#define NestedMouseMotion 1
-#define NestedKeyPress 2
-
-typedef struct {
- int x;
- int y;
-} NestedMouseMotionData;
-
-typedef struct {
- char key;
-} NestedKeyPressData;
-
-typedef union {
- NestedMouseMotionData mouseMotion;
- NestedKeyPressData keyPress;
-} NestedInputData;
-
-typedef struct {
- int type;
- NestedInputData data;
-} NestedInputEvent;
-
void Load_Nested_Mouse(pointer module);
-
-void NestedPostInputEvent(NestedInputEvent event);