Compile
Compile a source file
BOOL Compile( LPCSTR lpcszFileName, int * lpResult = NULL )
TRUE if compilation either successful or not needed
FALSE otherwise
EX1
//Compile a source file void Project_Compile_ex1() { Project.Compile("c:\test.c"); }
Loads and compile Origin C file
Possible values for result:
0, Compiled successfully
1, File not found
2, Compilation failed
3, File is found but can not be loaded
4, Unable to load and compile internal.c
5, File is already loaded and compiled
7, Unknown error
origin.h