Files
tp/include/f_pc/f_pc_deletor.h
T

16 lines
316 B
C
Raw Normal View History

2021-03-28 22:49:05 +02:00
2021-04-01 12:06:29 +02:00
#ifndef F_PC_DELETOR_H_
#define F_PC_DELETOR_H_
2021-03-28 22:49:05 +02:00
2023-05-12 12:10:14 -07:00
#include "dolphin/types.h"
2021-04-01 12:06:29 +02:00
2023-05-12 12:10:14 -07:00
typedef struct base_process_class base_process_class;
2021-04-01 12:06:29 +02:00
2024-11-29 08:24:26 -08:00
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);
2021-04-01 12:06:29 +02:00
#endif