mirror of
https://github.com/devkitPro/wut.git
synced 2026-07-18 16:21:36 -05:00
coreinit: Fix type from uint8_t * to void * in MEMExpHeap functions.
This commit is contained in:
parent
c83ff22780
commit
a2cf3837a3
|
|
@ -83,7 +83,7 @@ MEMAllocFromExpHeapEx(MEMExpandedHeap *heap,
|
|||
|
||||
void
|
||||
MEMFreeToExpHeap(MEMExpandedHeap *heap,
|
||||
uint8_t *block);
|
||||
void *block);
|
||||
|
||||
MEMExpandedHeapMode
|
||||
MEMSetAllocModeForExpHeap(MEMExpandedHeap *heap,
|
||||
|
|
@ -97,7 +97,7 @@ MEMAdjustExpHeap(MEMExpandedHeap *heap);
|
|||
|
||||
uint32_t
|
||||
MEMResizeForMBlockExpHeap(MEMExpandedHeap *heap,
|
||||
uint8_t *address,
|
||||
void *block,
|
||||
uint32_t size);
|
||||
|
||||
uint32_t
|
||||
|
|
@ -115,13 +115,13 @@ uint16_t
|
|||
MEMGetGroupIDForExpHeap(MEMExpandedHeap *heap);
|
||||
|
||||
uint32_t
|
||||
MEMGetSizeForMBlockExpHeap(uint8_t *addr);
|
||||
MEMGetSizeForMBlockExpHeap(void *block);
|
||||
|
||||
uint16_t
|
||||
MEMGetGroupIDForMBlockExpHeap(uint8_t *addr);
|
||||
MEMGetGroupIDForMBlockExpHeap(void *block);
|
||||
|
||||
MEMExpandedHeapDirection
|
||||
MEMGetAllocDirForMBlockExpHeap(uint8_t *addr);
|
||||
MEMGetAllocDirForMBlockExpHeap(void *block);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user