Files
tp/include/SSystem/SComponent/c_malloc.h
T

16 lines
294 B
C++
Raw Normal View History

2021-03-28 22:49:05 +02:00
#ifndef C_MALLOC_H
#define C_MALLOC_H
#include "dolphin/types.h"
2023-05-12 12:10:14 -07:00
class JKRHeap;
2021-03-30 02:45:32 +02:00
struct cMl {
2021-04-08 16:01:29 +02:00
static JKRHeap* Heap;
2021-03-30 02:45:32 +02:00
/* 80263220 */ static void init(JKRHeap*);
2021-04-08 16:01:29 +02:00
/* 80263228 */ static void* memalignB(int, u32);
2021-03-30 02:45:32 +02:00
/* 80263260 */ static void free(void*);
};
2021-03-28 22:49:05 +02:00
#endif /* C_MALLOC_H */