1
0
mirror of https://github.com/blawar/ooot.git synced 2024-06-25 22:09:34 +00:00
ooot/include/def/stackcheck.h
2022-02-14 10:56:16 -05:00

9 lines
324 B
C

#pragma once
struct StackEntry;
u32 StackCheck_Check(StackEntry* entry);
u32 StackCheck_CheckAll(void);
void StackCheck_Cleanup(StackEntry* entry);
StackStatus StackCheck_GetState(StackEntry* entry);
void StackCheck_Init(StackEntry* entry, void* stackTop, void* stackBottom, u32 initValue, s32 minSpace, const char* name);