mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 15:01:53 -04:00
221f40e609
* add "global.h" to files that use it * add MSL_C includes to files that use them * remove dolphin includes from headers that don't need them * remove JSupport includes from headers that don't need them * remove JKernel includes from headers that don't need them * remove JUtility includes from headers that don't need them * remove J3D includes from headers that don't need them * remove J2D includes from headers that don't need them * remove JAudio2 includes from headers that don't need them * remove Z2AudioLib includes from headers that don't need them * remove JMessage includes from headers that don't need them * remove JParticle includes from headers that don't need them * remove SComponent includes from headers that don't need them * remove dol includes from headers that don't need them * sort includes
28 lines
764 B
C
28 lines
764 B
C
|
|
#ifndef F_PC_EXECUTOR_H_
|
|
#define F_PC_EXECUTOR_H_
|
|
|
|
#include "f_pc/f_pc_layer_iter.h"
|
|
#include "f_pc/f_pc_line_iter.h"
|
|
|
|
typedef struct base_process_class base_process_class;
|
|
|
|
base_process_class* fpcEx_Search(fpcLyIt_JudgeFunc pFunc, void* pUserData);
|
|
base_process_class* fpcEx_SearchByID(unsigned int id);
|
|
BOOL fpcEx_IsExist(unsigned int id);
|
|
s32 fpcEx_ToLineQ(base_process_class* pProc);
|
|
s32 fpcEx_ExecuteQTo(base_process_class* pProc);
|
|
s32 fpcEx_Execute(base_process_class* pProc);
|
|
s32 fpcEx_ToExecuteQ(base_process_class* pProc);
|
|
void fpcEx_Handler(fpcLnIt_QueueFunc pFunc);
|
|
|
|
inline base_process_class* i_fpcM_Search(fpcLyIt_JudgeFunc pFunc, void* pUserData) {
|
|
return fpcEx_Search(pFunc, pUserData);
|
|
}
|
|
|
|
extern "C" {
|
|
void fpcEx_IsExist__FUi(void);
|
|
}
|
|
|
|
#endif
|