mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 23:35:23 -04:00
2453c0e333
* move dolsdk2004 over * cleanup some temp work * finish and cleanup gf * b_bh done * d_a_e_mb done
21 lines
336 B
C
21 lines
336 B
C
#ifndef _DOLPHIN_OSRESETSW_H_
|
|
#define _DOLPHIN_OSRESETSW_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*OSResetCallback)(void);
|
|
|
|
OSResetCallback OSSetResetCallback(OSResetCallback callback);
|
|
BOOL OSGetResetSwitchState(void);
|
|
BOOL OSGetResetButtonState(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|