blob: c0b7da0fc27ee1320c9c53065d1abde1302b7e0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef F_PC_DELETOR_H_
#define F_PC_DELETOR_H_
#include <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
|