mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
5867eaf68b
* typedef for cPhs_Step * make sdk includes consistent * d_menu_quit / d_msg_scrn_explain debug * d_a_obj_testcube mostly done * d_debug_pad mostly done * jstudio tool library headers * some JStudioCameraEditor headers * d_jcam_editor mostly done * try fixing some shield regressions * d_bg_parts mostly done * fix merge errors * debug fix
34 lines
941 B
C
34 lines
941 B
C
|
|
#ifndef F_PC_CREATE_ITER_H_
|
|
#define F_PC_CREATE_ITER_H_
|
|
|
|
#include <dolphin/types.h>
|
|
|
|
typedef struct create_tag create_tag;
|
|
|
|
typedef int (*fpcCtIt_MethodFunc)(void*, void*);
|
|
typedef void* (*fpcCtIt_JudgeFunc)(void*, void*);
|
|
|
|
typedef struct node_method_data {
|
|
/* 0x0 */ fpcCtIt_MethodFunc method;
|
|
/* 0x4 */ void* data;
|
|
} node_method_data;
|
|
|
|
typedef struct node_judge_data {
|
|
/* 0x0 */ fpcCtIt_JudgeFunc method;
|
|
/* 0x4 */ void* data;
|
|
} node_judge_data;
|
|
|
|
typedef struct fpcCtIt_jilprm_c {
|
|
/* 0x0 */ unsigned int layer_id;
|
|
/* 0x4 */ fpcCtIt_JudgeFunc method;
|
|
/* 0x8 */ void* data;
|
|
} fpcCtIt_jilprm_c;
|
|
|
|
int fpcCtIt_Method(fpcCtIt_MethodFunc i_method, void* i_data);
|
|
void* fpcCtIt_Judge(fpcCtIt_JudgeFunc i_judge, void* i_data);
|
|
void* fpcCtIt_filter_JudgeInLayer(create_tag* i_createTag, fpcCtIt_jilprm_c* i_iterData);
|
|
void* fpcCtIt_JudgeInLayer(unsigned int i_layerID, fpcCtIt_JudgeFunc i_method, void* i_data);
|
|
|
|
#endif
|