mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
6e149819e1
* d_a_kago cleanup * d_s_logo wii/shield work * d_s_logo / d_s_play debug work * fix missing profile class sizeof's * fix phase->id values * build fixes * fix dCamera_c and camera profile
23 lines
446 B
C
23 lines
446 B
C
#ifndef _REVOLUTION_OSRESETSW_H_
|
|
#define _REVOLUTION_OSRESETSW_H_
|
|
|
|
#include <revolution/types.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*OSResetCallback)(void);
|
|
typedef void (*OSPowerCallback)(void);
|
|
|
|
OSResetCallback OSSetResetCallback(OSResetCallback callback);
|
|
OSPowerCallback OSSetPowerCallback(OSPowerCallback callback);
|
|
BOOL OSGetResetSwitchState(void);
|
|
BOOL OSGetResetButtonState(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|