Language:
Русский
English
Importing routines from DLLs by a new name
When you import a routine from a DLL with a name clause specified, the procedure or function is imported by a different name than its identifier.
Example
Here the ImportByNewName procedure is imported from the TESTLIB DLL using the name ANOTHERNAME:
procedure ImportByNewName; external 'TESTLIB' name 'ANOTHERNAME';