EntryPoint .



The default EntryPoint of any RosAsm Source is:


Main:


In case there would be some incompatibility (we have seen the occurency of a DLL that had to have to export a 'Main' Function...), you can redefine the EntryPoint with:


PREPARSE EntryPoint TheNewName


See Pre_Parser_concept, for PREPARSE rigid syntax, and take care that this EntryPoint implementation is not really a true PreParser, but just a dirty hack that does the required substitution.


As opposed to the other PREPARSE statements, this one cannot be mixed with the other ones. So, you must leave it stand alone on its own line. Example:


PREPARSE Equal Alternates

PREPARSE EntryPoint TheNewName


~~~~~~~