mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-06-02 01:30:00 -04:00
897bb4c463
* begin revolution sdk setup * wii rvl test * revo OS mostly done for shieldD
22 lines
384 B
C
22 lines
384 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);
|
|
BOOL OSGetResetSwitchState(void);
|
|
BOOL OSGetResetButtonState(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|