Twilight Princess
Decompilation of The Legend of Zelda: Twilight Princess
Loading...
Searching...
No Matches
c_malloc.h
Go to the documentation of this file.
1#ifndef C_MALLOC_H
2#define C_MALLOC_H
3
4#include "dolphin/types.h"
5
6class JKRHeap;
7
8struct cMl {
9 static JKRHeap* Heap;
10 static void init(JKRHeap*);
11 static void* memalignB(int, u32);
12 static void free(void*);
13};
14
15#endif /* C_MALLOC_H */
Definition JKRHeap.h:20
static initFunc init[]
Definition d_menu_collect.cpp:39
unsigned long u32
Definition types.h:12
Definition c_malloc.h:8
static JKRHeap * Heap
Definition c_malloc.h:9
static void * memalignB(int, u32)
Definition c_malloc.cpp:15
static void free(void *)
Definition c_malloc.cpp:26