mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 06:50:43 -04:00
691aac252b
* wii building OK + m_Do_graphic debug work * d_meter_HIO debug cleanup * wii m_Do_graphic stuff * tag_attack_item OK, mirror_chain almost * fix build * mg_fshop matching
31 lines
660 B
C++
31 lines
660 B
C++
#ifndef M_DO_EXT2_H
|
|
#define M_DO_EXT2_H
|
|
|
|
#include "JSystem/JKernel/JKRHeap.h"
|
|
|
|
class FixedMemoryCheck {
|
|
public:
|
|
FixedMemoryCheck(u32*, u32, JKRHeap*);
|
|
|
|
void alloc();
|
|
void save();
|
|
void check();
|
|
void diff();
|
|
|
|
static FixedMemoryCheck* easyCreate(void*, s32);
|
|
static FixedMemoryCheck* easyCreate(void*, u32);
|
|
static void checkAll();
|
|
static void diffAll();
|
|
static void saveAll();
|
|
|
|
/* 0x00 */ u32* field_0x00;
|
|
/* 0x04 */ u32 field_0x04;
|
|
/* 0x08 */ u32* field_0x08;
|
|
/* 0x0C */ JKRHeap* mpHeap;
|
|
/* 0x10 */ int field_0x10;
|
|
/* 0x14 */ u8 field_0x14;
|
|
/* 0x18 */ FixedMemoryCheck* field_0x18;
|
|
};
|
|
|
|
#endif
|