mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-14 14:31:50 +01:00
21 lines
283 B
C
21 lines
283 B
C
|
#pragma once
|
||
|
#include <wut.h>
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
void *
|
||
|
MEMAllocFromDefaultHeap(uint32_t size);
|
||
|
|
||
|
void *
|
||
|
MEMAllocFromDefaultHeapEx(uint32_t size,
|
||
|
int32_t alignment);
|
||
|
|
||
|
void
|
||
|
MEMFreeToDefaultHeap(void *block);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|