mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
850fae1aa3
* m_Do_main / f_ap_game debug stuff * revolution sdk compatibility * f_op_actor debug work * rename fopAcM_SetupActor to fopAcM_ct * fix build * fix jp/pal splits
31 lines
634 B
C++
31 lines
634 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 void easyCreate(void*, s32);
|
|
static void 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
|