Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2105 | - | 1 | #ifndef _FILE_H |
2 | #define _FILE_H |
||
3 | |||
4 | #define NUMBER_OF_AXES_USED 8 |
||
5 | #define NUMBER_OF_BUTTONS_USED 10 |
||
6 | |||
7 | extern u8 GamepadLayout[30]; |
||
8 | extern int MaxAxisValue; |
||
9 | extern const char* LablesOfAxis[NUMBER_OF_AXES_USED]; |
||
10 | extern const char* LablesOfButtons[NUMBER_OF_BUTTONS_USED]; |
||
11 | extern int file_init(); |
||
12 | extern void write_file(void); |
||
13 | extern u8 FileExists; |
||
14 | |||
15 | #endif //_FILE_H |