Files
ac-decomp/include/dolphin/os.h
T
2022-12-24 20:41:04 +01:00

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