To make the symbols externally accessible, it is possible to give nicknames to mangled names, or to change the mangled name directly. Two modifiers can be used:
The prototype for an aliased function or procedure is as follows:
The procedure AliasedProc will also be known as AliasName. Take care, the name you specify is case sensitive (as C is).
Furthermore, the exports section of a library is also used to declare the names that will be exported by the shared library. The names in the exports section are case-sensitive (while the actual declaration of the routine is not). For more information on the creating shared libraries, chapter 12, page 644.