sync mga_vid.h to revision 265 from the mga_vid repo
[mplayer/glamo.git] / input / joystick.h
blob3a70f7cbd3c766b85ffc3e910171842f0001e904
1 #ifndef MPLAYER_JOYSTICK_H
2 #define MPLAYER_JOYSTICK_H
4 #define JOY_BASE (0x100+128)
5 #define JOY_AXIS0_PLUS (JOY_BASE+0)
6 #define JOY_AXIS0_MINUS (JOY_BASE+1)
7 #define JOY_AXIS1_PLUS (JOY_BASE+2)
8 #define JOY_AXIS1_MINUS (JOY_BASE+3)
9 #define JOY_AXIS2_PLUS (JOY_BASE+4)
10 #define JOY_AXIS2_MINUS (JOY_BASE+5)
11 #define JOY_AXIS3_PLUS (JOY_BASE+6)
12 #define JOY_AXIS3_MINUS (JOY_BASE+7)
13 #define JOY_AXIS4_PLUS (JOY_BASE+8)
14 #define JOY_AXIS4_MINUS (JOY_BASE+9)
15 #define JOY_AXIS5_PLUS (JOY_BASE+10)
16 #define JOY_AXIS5_MINUS (JOY_BASE+11)
17 #define JOY_AXIS6_PLUS (JOY_BASE+12)
18 #define JOY_AXIS6_MINUS (JOY_BASE+13)
19 #define JOY_AXIS7_PLUS (JOY_BASE+14)
20 #define JOY_AXIS7_MINUS (JOY_BASE+15)
21 #define JOY_AXIS8_PLUS (JOY_BASE+16)
22 #define JOY_AXIS8_MINUS (JOY_BASE+17)
23 #define JOY_AXIS9_PLUS (JOY_BASE+18)
24 #define JOY_AXIS9_MINUS (JOY_BASE+19)
26 #define JOY_BTN_BASE ((0x100+148)|MP_NO_REPEAT_KEY)
27 #define JOY_BTN0 (JOY_BTN_BASE+0)
28 #define JOY_BTN1 (JOY_BTN_BASE+1)
29 #define JOY_BTN2 (JOY_BTN_BASE+2)
30 #define JOY_BTN3 (JOY_BTN_BASE+3)
31 #define JOY_BTN4 (JOY_BTN_BASE+4)
32 #define JOY_BTN5 (JOY_BTN_BASE+5)
33 #define JOY_BTN6 (JOY_BTN_BASE+6)
34 #define JOY_BTN7 (JOY_BTN_BASE+7)
35 #define JOY_BTN8 (JOY_BTN_BASE+8)
36 #define JOY_BTN9 (JOY_BTN_BASE+9)
38 int mp_input_joystick_init(char* dev);
40 int mp_input_joystick_read(int fd);
42 #endif /* MPLAYER_JOYSTICK_H */