Files
tp/include/f/f_pc/f_pc_profile.h
T
Erin Moon c70d485d35 normalize header guards to {tu_name}_H_ (#87)
i previously had a bad habit of using double underscores in include
guard macro names, which are implementation-reserved per
the C++98 standard (see 17.4.3.1.2 Global names).

Co-authored-by: Pheenoh <pheenoh@gmail.com>
2021-01-18 14:02:51 -05:00

28 lines
494 B
C

#ifndef F_PC_PROFILE_H_
#define F_PC_PROFILE_H_
#include "f/f_pc/f_pc_method.h"
#include "global.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;
extern "C" {
process_profile_definition* fpcPf_Get(s16 profileID);
};
#endif