mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 06:34:18 -04:00
12 lines
232 B
C
12 lines
232 B
C
#ifndef _DOLPHIN_OS
|
|
#define _DOLPHIN_OS
|
|
|
|
#include "types.h"
|
|
|
|
void OSReport(const char*, ...);
|
|
|
|
asm BOOL OSDisableInterrupts(void);
|
|
asm BOOL OSEnableInterrupts(void);
|
|
asm BOOL OSRestoreInterrupts(BOOL level);
|
|
|
|
#endif |