mirror of https://github.com/PrimeDecomp/prime.git
23 lines
387 B
C
23 lines
387 B
C
#ifndef _DOLPHIN_OSRESETSW
|
|
#define _DOLPHIN_OSRESETSW
|
|
|
|
#include <dolphin/os/OSContext.h>
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*OSResetCallback)(void);
|
|
|
|
BOOL OSGetResetButtonState(void);
|
|
|
|
BOOL OSGetResetSwitchState(void);
|
|
OSResetCallback OSSetResetCallback(OSResetCallback callback);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // _DOLPHIN_OSRESETSW
|