mirror of
https://github.com/zeldaret/tp
synced 2026-08-01 16:20:18 -04:00
19 lines
316 B
C
19 lines
316 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
|