mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
21 lines
308 B
C
21 lines
308 B
C
#ifndef OSRESETSW_H
|
|
#define OSRESETSW_H
|
|
|
|
#include "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
|