mirror of
https://github.com/zeldaret/tp
synced 2026-05-23 06:54:28 -04:00
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();
|
|
int fpcDt_ToDeleteQ(base_process_class* i_proc);
|
|
int fpcDt_ToQueue(base_process_class* i_proc);
|
|
void fpcDt_Handler();
|
|
int fpcDt_Delete(void* i_proc);
|
|
|
|
#endif
|