Finish hsfload besides cenv
This commit is contained in:
parent
319eb2076c
commit
1e51c0f60d
9 changed files with 20 additions and 27 deletions
|
|
@ -57,7 +57,7 @@ void Hu3DDrawPreInit(void);
|
|||
void Hu3DDraw(ModelData *arg0, Mtx arg1, Vec *arg2);
|
||||
s32 ObjCullCheck(HsfData *arg0, HsfObject *arg1, Mtx arg2);
|
||||
void Hu3DDrawPost(void);
|
||||
void MakeDisplayList(s16 arg0, u32 arg1);
|
||||
void MakeDisplayList(s16 arg0, uintptr_t arg1);
|
||||
HsfConstData *ObjConstantMake(HsfObject *arg0, u32 arg1);
|
||||
void mtxTransCat(Mtx arg0, float arg1, float arg2, float arg3);
|
||||
void mtxRotCat(Mtx arg0, float arg1, float arg2, float arg3);
|
||||
|
|
|
|||
|
|
@ -19,9 +19,9 @@ void *HuMemInit(void *ptr, s32 size);
|
|||
void HuMemDCFlushAll();
|
||||
void HuMemDCFlush(HeapID heap);
|
||||
void *HuMemDirectMalloc(HeapID heap, s32 size);
|
||||
void *HuMemDirectMallocNum(HeapID heap, s32 size, u32 num);
|
||||
void *HuMemDirectMallocNum(HeapID heap, s32 size, uintptr_t num);
|
||||
void HuMemDirectFree(void *ptr);
|
||||
void HuMemDirectFreeNum(HeapID heap, u32 num);
|
||||
void HuMemDirectFreeNum(HeapID heap, uintptr_t num);
|
||||
s32 HuMemUsedMallocSizeGet(HeapID heap);
|
||||
s32 HuMemUsedMallocBlockGet(HeapID heap);
|
||||
u32 HuMemHeapSizeGet(HeapID heap);
|
||||
|
|
@ -29,9 +29,9 @@ void *HuMemHeapPtrGet(HeapID heap);
|
|||
|
||||
void *HuMemHeapInit(void *ptr, s32 size);
|
||||
void *HuMemMemoryAlloc(void *heap_ptr, s32 size, uintptr_t retaddr);
|
||||
void *HuMemMemoryAllocNum(void *heap_ptr, s32 size, u32 num, uintptr_t retaddr);
|
||||
void *HuMemMemoryAllocNum(void *heap_ptr, s32 size, uintptr_t num, uintptr_t retaddr);
|
||||
void HuMemMemoryFree(void *ptr, uintptr_t retaddr);
|
||||
void HuMemMemoryFreeNum(void *heap_ptr, u32 num, uintptr_t retaddr);
|
||||
void HuMemMemoryFreeNum(void *heap_ptr, uintptr_t num, uintptr_t retaddr);
|
||||
s32 HuMemUsedMemorySizeGet(void *heap_ptr);
|
||||
s32 HuMemUsedMemoryBlockGet(void *heap_ptr);
|
||||
s32 HuMemMemorySizeGet(void *ptr);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue