prime/include/dolphin/os/OSResetSW.h
Phillip Stephens 35b9861a1e Match and link OSResetSW
Former-commit-id: dd742bcc8c93d1bf7a9ddcb4b2b257bec230740a
2022-12-22 15:11:03 -08:00

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