mirror of https://github.com/zeldaret/tp.git
30 lines
476 B
C++
30 lines
476 B
C++
#include "dolphin/types.h"
|
|
|
|
class JKRExpHeap {
|
|
public:
|
|
s32 getTotalUsedSize() const;
|
|
|
|
};
|
|
|
|
class JKRHeap {
|
|
public:
|
|
s32 getFreeSize();
|
|
};
|
|
|
|
class HeapCheck {
|
|
public:
|
|
void CheckHeap1(void);
|
|
s32 getUsedCount(void) const;
|
|
|
|
|
|
private:
|
|
char* names[2];
|
|
JKRExpHeap* heap;
|
|
s32 max_total_used_size;
|
|
s32 max_total_free_size;
|
|
u8 unk20[8]; // 8 bytes
|
|
u32 heap_size;
|
|
u32 used_count;
|
|
u32 total_used_size;
|
|
|
|
}; |