mirror of https://github.com/zeldaret/tp.git
20 lines
317 B
C
20 lines
317 B
C
|
|
#ifndef F_PC_DELETOR_H
|
|
#define F_PC_DELETOR_H
|
|
|
|
#include "global.h"
|
|
|
|
struct base_process_class;
|
|
|
|
extern "C" {
|
|
|
|
bool fpcDt_IsComplete(void);
|
|
int fpcDt_ToDeleteQ(base_process_class *pProc);
|
|
int fpcDt_ToQueue(base_process_class *pProc);
|
|
void fpcDt_Handler(void);
|
|
int fpcDt_Delete(base_process_class *pProc);
|
|
|
|
};
|
|
|
|
#endif
|