Files
dusklight/include/f_pc/f_pc_creator.h
T
2024-10-12 15:11:17 -07:00

15 lines
301 B
C

#ifndef F_PC_CREATOR_H_
#define F_PC_CREATOR_H_
#include "f_pc/f_pc_base.h"
typedef struct base_process_class base_process_class;
BOOL fpcCt_IsCreatingByID(fpc_ProcID id);
s32 fpcCt_IsDoing(base_process_class* pProc);
BOOL fpcCt_Abort(base_process_class* pProc);
void fpcCt_Handler(void);
#endif