Language:
Русский
English
Importing routines from DLLs by name
When you import a routine from a DLL with no index or name clause specified, the procedure or function is imported explicitly by name.
The name used is the procedure's or function's identifier.
Example
Here, the ImportByName procedure is imported from the TESTLIB DLL using the name IMPORTBYNAME:
procedure ImportByName; external 'TESTLIB';