mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 17:51:53 +01:00
31 lines
490 B
C
31 lines
490 B
C
#pragma once
|
|
#include <wut.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef uint32_t MEMBaseHeapType;
|
|
typedef void *MEMHeapHandle;
|
|
|
|
enum MEMBaseHeapType
|
|
{
|
|
MEM_BASE_HEAP_MEM1 = 0,
|
|
MEM_BASE_HEAP_MEM2 = 1,
|
|
MEM_BASE_HEAP_FG = 8,
|
|
};
|
|
|
|
MEMBaseHeapType
|
|
MEMGetArena(MEMHeapHandle handle);
|
|
|
|
MEMHeapHandle
|
|
MEMGetBaseHeapHandle(MEMBaseHeapType type);
|
|
|
|
MEMHeapHandle
|
|
MEMSetBaseHeapHandle(MEMBaseHeapType type,
|
|
MEMHeapHandle handle);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|