diff options
author | Revo <projectrevotpp@hotmail.com> | 2020-05-29 14:17:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-29 14:17:03 -0400 |
commit | e6c0d16a679663e816130ca7bc793cab682f911c (patch) | |
tree | 57a330cbec60b4033531c452406771e79301a680 /include/heap.h | |
parent | d6fd8d1ed926feebffab4154a84eb70a84083bfc (diff) | |
parent | 96183df2b89ae0f2294520550ed382d06250c177 (diff) |
Merge pull request #128 from PikalaxALT/pikalax_work
Decompile unk_02006234.s; misc cleanup
Diffstat (limited to 'include/heap.h')
-rw-r--r-- | include/heap.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/heap.h b/include/heap.h index 36b79122..49c54d22 100644 --- a/include/heap.h +++ b/include/heap.h @@ -1,8 +1,8 @@ #ifndef POKEDIAMOND_HEAP_H #define POKEDIAMOND_HEAP_H -void * FUN_02016998(u32 heap_id, u32 size); -void * FUN_020169D8(u32 heap_id, u32 size); -void FUN_02016A18(void * ptr); +void * AllocFromHeap(u32 heap_id, u32 size); +void * AllocFromHeapAtEnd(u32 heap_id, u32 size); +void FreeToHeap(void * ptr); #endif //POKEDIAMOND_HEAP_H |