diff options
| author | Pheenoh <pheenoh@gmail.com> | 2021-03-27 20:18:32 -0400 |
|---|---|---|
| committer | Pheenoh <pheenoh@gmail.com> | 2021-03-27 20:18:32 -0400 |
| commit | d58a1ab643c59b498de5fa0eceab31a35ff05972 (patch) | |
| tree | 27cfca08c651fe091197477d2ebc6df14ad3fc8f /include | |
| parent | 157786e4be8252fc647c7a380d331ea469020b66 (diff) | |
fopMsg_Draw OK
Diffstat (limited to 'include')
| -rw-r--r-- | include/f/f_pc/f_pc_leaf.h | 28 |
1 files changed, 12 insertions, 16 deletions
diff --git a/include/f/f_pc/f_pc_leaf.h b/include/f/f_pc/f_pc_leaf.h index a903f64736..c0916f5bf2 100644 --- a/include/f/f_pc/f_pc_leaf.h +++ b/include/f/f_pc/f_pc_leaf.h @@ -8,24 +8,24 @@ #include "global.h" typedef struct leafdraw_method_class { - process_method_class mBase; - process_method_func mpDrawFunc; + /* 0x00 */ process_method_class mBase; + /* 0x10 */ process_method_func mpDrawFunc; } leafdraw_method_class; typedef struct leafdraw_class { - base_process_class mBase; - leafdraw_method_class* mpDrawMtd; - s8 mbUnk0; - u8 mbUnk1; - draw_priority_class mDwPi; + /* 0x00 */ base_process_class mBase; + /* 0xB8 */ leafdraw_method_class* mpDrawMtd; + /* 0xBC */ s8 mbUnk0; + /* 0xBD */ u8 mbUnk1; + /* 0xBE */ draw_priority_class mDwPi; } leafdraw_class; typedef struct leaf_process_profile_definition { - process_profile_definition mBase; - leafdraw_method_class* mLfDrwMth; - s16 unk20; - u8 unk22[2]; - s32 unk24; + /* 0x00 */ process_profile_definition mBase; + /* 0x1C */ leafdraw_method_class* mLfDrwMth; + /* 0x20 */ s16 unk20; + /* 0x22 */ u8 unk22[2]; + /* 0x24 */ s32 unk24; } leaf_process_profile_definition; s32 fpcLf_GetPriority(const leafdraw_class* pLeaf); @@ -36,8 +36,4 @@ s32 fpcLf_IsDelete(leafdraw_class* pLeaf); s32 fpcLf_Delete(leafdraw_class* pLeaf); s32 fpcLf_Create(leafdraw_class* pLeaf); -extern "C" { -void fpcLf_GetPriority__FPC14leafdraw_class(void); -} - #endif |
