mirror of https://github.com/zeldaret/tp.git
19 lines
329 B
C
19 lines
329 B
C
|
|
#ifndef F_PC_EXECUTOR_H
|
|
#define F_PC_EXECUTOR_H
|
|
|
|
#include "SComponent/c_node_iter.h"
|
|
|
|
struct base_process_class;
|
|
|
|
extern "C" {
|
|
|
|
int fpcEx_ToLineQ(base_process_class *pProc);
|
|
int fpcEx_ExecuteQTo(base_process_class *pProc);
|
|
int fpcEx_ToExecuteQ(base_process_class *pProc);
|
|
void fpcEx_Handler(cNdIt_MethodFunc pFunc);
|
|
|
|
};
|
|
|
|
#endif
|