Files
tp/include/f_pc/f_pc_profile.h
T
TakaRikka 3a79e96e8b d_meter2 wip / d_s_play / d_file_sel_info (#179)
* d_meter2 wip

* d_s_play

* d_file_sel_info

* format

* tag_lv5soup / tag_setBall / fix dKyeff

* d_cc_uty
2022-02-06 09:23:54 -05:00

29 lines
619 B
C

#ifndef F_PC_PROFILE_H_
#define F_PC_PROFILE_H_
#include "dolphin/types.h"
#include "f_pc/f_pc_method.h"
struct nodedraw_method_class;
typedef struct process_profile_definition {
s32 mLayerID;
u16 mListID;
u16 mListPrio;
s16 mProcName;
s16 unkA; // probably padding
struct process_method_class* mpPcMtd;
s32 mSize;
s32 mSizeOther;
s32 mParameters;
} process_profile_definition;
#define LAYER_DEFAULT (-2)
struct leaf_process_profile_definition;
leaf_process_profile_definition* fpcPf_Get(s16 profileID);
extern leaf_process_profile_definition** g_fpcPf_ProfileList_p;
#endif