mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-05-24 23:01:23 -04:00
073992df8d
* cleanup f_pc files * cleanup f_op files * fix a couple f_op_actor_mng functions * minor JSystem work
16 lines
316 B
C
16 lines
316 B
C
|
|
#ifndef F_PC_DELETOR_H_
|
|
#define F_PC_DELETOR_H_
|
|
|
|
#include "dolphin/types.h"
|
|
|
|
typedef struct base_process_class base_process_class;
|
|
|
|
BOOL fpcDt_IsComplete();
|
|
s32 fpcDt_ToDeleteQ(base_process_class* i_proc);
|
|
s32 fpcDt_ToQueue(base_process_class* i_proc);
|
|
void fpcDt_Handler();
|
|
s32 fpcDt_Delete(void* i_proc);
|
|
|
|
#endif
|