mirror of
https://github.com/devkitPro/wut.git
synced 2026-04-17 23:16:37 -05: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
|