When exporting functions from a library, there are 2 things you must take in account:
The calling conventions are controlled by the modi ers cdecl, popstack, pascal, safecall, stdcall and register. See section 6.3, page 319 for more information on the di erent kinds of calling scheme.
The naming conventions can be controlled by 2 modi ers in the case of static libraries:
For more information on how these di erent modi ers change the name mangling of the routine section 6.2, page 309.
Remark:If you use in your unit functions that are in other units, or system functions, then the C program will need to link in the object les from these units too.