mirror of
https://github.com/zeldaret/tp
synced 2026-06-12 13:35:26 -04:00
0555115de8
* f_pc_base, one non matching * some of f_pc_manager * f_pc_node OK * f_pc_pause partly * started node_req * more progress * most of node req * delete unused asm * node req header and param names * param renaming * header for manager * review comment struct names * fpcM_Management OK * int -> s32 * merge master * most of f_pc_create_iter * f_pc_stdcreate_req OK * f_pc_fstcreate OK * f_pc_leaf OK * f_pc_draw OK * f_pc_deletor partly * fix parameter type in f_pc_pause * review * review, use cPh enum and fix process_profile_definition struct * convert f_pc files to C * matched more functions * fix global.h * fix variable types * format * mpre Phs enum * fix merge errors * fix gamepad stopPatternedRumble * format * delete leftover files from merge * move asm to correct folder * revert f_pc from C to CPP * remove C hacks and format * format * OK
32 lines
547 B
C++
32 lines
547 B
C++
#ifndef D_DRAWLIST_H_
|
|
#define D_DRAWLIST_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
class dDlst_FileInfo_c {
|
|
public:
|
|
void draw(void);
|
|
~dDlst_FileInfo_c();
|
|
|
|
private:
|
|
};
|
|
|
|
class dDlst_peekZ_c {
|
|
u8 unk[4];
|
|
}; // actual size unknown!!!
|
|
|
|
class dDlst_list_c {
|
|
public:
|
|
static u32 mWipeColor;
|
|
static u32 mWipeDlst;
|
|
static u32 mWipeRate;
|
|
static u32 mWipeSpeed;
|
|
|
|
// private:
|
|
/* 0x00000 */ u8 unk[0x16180];
|
|
/* 0x16180 */ dDlst_peekZ_c dlstPeekZ;
|
|
/* 0x16184 */ u8 unk_0x16194[0x1C];
|
|
}; // Size: 0x161A0
|
|
|
|
#endif D_DRAWLIST_H_
|