mirror of
https://github.com/zeldaret/tww.git
synced 2026-06-07 20:01:27 -04:00
adb95b135c
Original repository: https://github.com/encounter/ww
15 lines
302 B
C
15 lines
302 B
C
|
|
#ifndef F_PC_CREATOR_H_
|
|
#define F_PC_CREATOR_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct base_process_class base_process_class;
|
|
|
|
BOOL fpcCt_IsCreatingByID(unsigned int id);
|
|
s32 fpcCt_IsDoing(base_process_class* pProc);
|
|
BOOL fpcCt_Abort(base_process_class* pProc);
|
|
void fpcCt_Handler(void);
|
|
|
|
#endif
|