mirror of
https://github.com/zeldaret/tww.git
synced 2026-05-23 06:54:16 -04:00
16 lines
329 B
C
16 lines
329 B
C
|
|
#ifndef F_PC_CREATOR_H_
|
|
#define F_PC_CREATOR_H_
|
|
|
|
#include "f_pc/f_pc_base.h"
|
|
#include "dolphin/types.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);
|
|
BOOL fpcCt_Handler(void);
|
|
|
|
#endif
|