1: /******************************************************************************
2:
3: SystemButtons.prx
4:
5: ******************************************************************************/
6:
7: #ifndef SYSTEMBUTTONS_PRX_H
8: #define SYSTEMBUTTONS_PRX_H
9:
10: #ifdef __cplusplus
11: extern "C" {
12: #endif
13:
14: void initSystemButtons(int devkit_version);
15: unsigned int readSystemButtons(void);
16: unsigned int readHomeButton(void);
17: unsigned int readVolumeButtons(void);
18: unsigned int readVolUpButton(void);
19: unsigned int readVolDownButton(void);
20: unsigned int readNoteButton(void);
21: unsigned int readScreenButton(void);
22: unsigned int readHoldSwitch(void);
23: unsigned int readWLANSwitch(void);
24: int readMainVolume(void);
25:
26: #ifdef __cplusplus
27: }
28: #endif
29:
30: #endif /* SYSTEMBUTTONS_PRX_H */
31: