mirror of
https://github.com/libretro/RetroArch
synced 2025-03-31 19:21:06 +00:00
16 lines
249 B
C
16 lines
249 B
C
#ifndef SYSTEMBUTTONS_PRX_H
|
|
#define SYSTEMBUTTONS_PRX_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
unsigned int readSystemButtons(void);
|
|
void loadGame( const char* fileName, void * argp);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SYSTEMBUTTONS_PRX_H */
|