summaryrefslogtreecommitdiffstats
path: root/input/mouse.h
diff options
context:
space:
mode:
authoralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-08 18:10:56 +0000
committeralbeu <albeu@b3059339-0415-0410-9bf9-f77b7e298cf2>2002-02-08 18:10:56 +0000
commitce2367725e43124f8be5ef43650cd9514ae1c335 (patch)
tree70fe2b161bf34cb02ae045b48b9249122bb3e4b8 /input/mouse.h
parent75d0fbaf2ec8bfc91c1a29b6b9e3004615e3e7b4 (diff)
downloadmpv-ce2367725e43124f8be5ef43650cd9514ae1c335.tar.bz2
mpv-ce2367725e43124f8be5ef43650cd9514ae1c335.tar.xz
Added support for key combination and mouse buttons key code
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@4590 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input/mouse.h')
-rw-r--r--input/mouse.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/input/mouse.h b/input/mouse.h
new file mode 100644
index 0000000000..4c6520eb7d
--- /dev/null
+++ b/input/mouse.h
@@ -0,0 +1,13 @@
+
+
+#define MOUSE_BASE (0x100+256)
+#define MOUSE_BTN0 (MOUSE_BASE+0)
+#define MOUSE_BTN1 (MOUSE_BASE+1)
+#define MOUSE_BTN2 (MOUSE_BASE+2)
+#define MOUSE_BTN3 (MOUSE_BASE+3)
+#define MOUSE_BTN4 (MOUSE_BASE+4)
+#define MOUSE_BTN5 (MOUSE_BASE+5)
+#define MOUSE_BTN6 (MOUSE_BASE+6)
+#define MOUSE_BTN7 (MOUSE_BASE+7)
+#define MOUSE_BTN8 (MOUSE_BASE+8)
+#define MOUSE_BTN9 (MOUSE_BASE+9)