NSMBW-Decomp
A decompilation of New Super Mario Bros. Wii
Loading...
Searching...
No Matches
MEMHeapCommon.h
1#pragma once
2#include <types.h>
3#include <lib/rvl/mem/MEMList.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
9struct OSMutex; // TODO: fill in struct
10
11typedef struct {
12 u32 mTag;
13 MEMLink mpLink;
14 MEMList mpList;
15 void *mpHeapStart;
16 void *mpHeapEnd;
17 OSMutex *mpMutex;
19
20#ifdef __cplusplus
21}
22#endif