EnglishРусский  
The project is closed! You can look at a new scripting language. It is available on GitHub.
Also, try our open source cross-platform automation software.

Ads

Installer and installation software
Commercial and Freeware installers.

gentee_load

Load and launch the bytecode. This function loads the bytecode from the file or the memory and launch it if it is required. You can create the bytecode with gentee_compile function.

uint STDCALL gentee_load (
   pubyte bytecode,
   uint flag
)

Parameters

bytecode The pointer to the bytecode or the filename of .ge file.
flag Flags.
GLOAD_ARGSGet command line arguments
GLOAD_FILERead file to load the bytecode. The bytecode is name of the loading file
GLOAD_RUNLoad <entry> functions and run <main> function.

Return value

The result of the executed bytecode if GLOAD_RUN was defined.

Related links

Source