mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 15:01:33 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
20 lines
280 B
C
20 lines
280 B
C
#ifndef OSRESETSW_H
|
|
#define OSRESETSW_H
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef void (*OSResetCallback)(void);
|
|
|
|
static BOOL OSGetResetButtonState(void);
|
|
BOOL OSGetResetSwitchState(void);
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif /* OSRESETSW_H */
|