mirror of
https://github.com/zeldaret/tp
synced 2026-05-25 15:25:25 -04:00
24b72a5302
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
15 lines
298 B
C
15 lines
298 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);
|
|
BOOL fpcCt_IsDoing(base_process_class* pProc);
|
|
BOOL fpcCt_Abort(base_process_class* pProc);
|
|
void fpcCt_Handler();
|
|
|
|
#endif
|