Files
ac-decomp/include/dolphin/os/OSInterrupt.h
T
2023-03-14 08:36:15 +00:00

13 lines
263 B
C

#ifndef OS_INTERRUPT_H
#define OS_INTERRUPT_H
#include "types.h"
BOOL OSDisableInterrupts(void);
BOOL OSEnableInterrupts(void);
BOOL OSRestoreInterrupts(BOOL status);
void __RAS_OSDisableInterrupts_begin(void);
void __RAS_OSDisableInterrupts_end(void);
#endif