Files
tp/include/f_pc/f_pc_creator.h
T

15 lines
302 B
C
Raw Normal View History

2021-04-01 12:06:29 +02:00
#ifndef F_PC_CREATOR_H_
#define F_PC_CREATOR_H_
2021-03-28 22:49:05 +02:00
#include "dolphin/types.h"
2023-05-12 12:10:14 -07:00
typedef struct base_process_class base_process_class;
2021-04-01 12:06:29 +02:00
BOOL fpcCt_IsCreatingByID(unsigned int id);
2023-05-12 12:10:14 -07:00
s32 fpcCt_IsDoing(base_process_class* pProc);
BOOL fpcCt_Abort(base_process_class* pProc);
2021-04-01 12:06:29 +02:00
void fpcCt_Handler(void);
#endif