mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-25 07:02:47 -04:00
6ddea57b69
* getLayerNo_common_common finally matched * dolphin ai / ar / card work from prime decomp * work on dolphin dvd / dsp / db * more dolphin os work * si work * remove asm * build fix
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 */
|