mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-23 14:41:38 -04:00
18 lines
237 B
C
18 lines
237 B
C
#ifndef OS_ARENA_H
|
|
#define OS_ARENA_H
|
|
#include "types.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
void* OSGetArenaHi(void);
|
|
void* OSGetArenaLo(void);
|
|
|
|
void OSSetArenaHi(void*);
|
|
void OSSetArenaLo(void*);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif |