Subversion Repositories Projects

Rev

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      //Comment out for Cam Control only
5
//#define NUMBER_OF_BUTTONS_USED   10     //Comment out for Cam Control only
6
 
7
#define NUMBER_OF_AXES_USED      4
8
#define NUMBER_OF_BUTTONS_USED   3
9
 
10
extern u8 GamepadLayout[30];
11
extern int MaxAxisValue;
12
extern const char* LablesOfAxis[NUMBER_OF_AXES_USED];
13
extern const char* LablesOfButtons[NUMBER_OF_BUTTONS_USED];
14
extern int file_init();
15
extern void write_file(void);
16
extern u8 FileExists;
17
 
18
#endif //_FILE_H