mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-26 20:54:47 +00:00
37878bd4ce
cores.
18 lines
308 B
C
18 lines
308 B
C
#ifndef KERNEL_FUNCTIONS_PRX_H
|
|
#define KERNEL_FUNCTIONS_PRX_H
|
|
|
|
#include <pspkerneltypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
unsigned int read_system_buttons(void);
|
|
void exitspawn_kernel( const char* fileName, SceSize args, void * argp);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* SYSTEMBUTTONS_PRX_H */
|