Important Notice
The pages on this site contain documentation for very old MS-DOS software,
purely for historical purposes.
If you're looking for up-to-date documentation, particularly for programming,
you should not rely on the information found here, as it will be woefully
out of date.
IMPORTS Statement: Example
◄IMPORTS► ◄Up► ◄Contents► ◄Index► ◄Back►
─────IMPORTS Statement: Example─────────────────────────────────────────────
IMPORTS
Sample.SampleRead
SampleA.SampleWrite
ReadChar = Read.1
This example defines three functions to be imported:
■ SampleRead
■ SampleWrite
■ A function that has been assigned an ordinal value of 1
The functions are found in the Sample, SampleA, and Read
applications or DLLs, respectively. The function from Read is
referred to as ReadChar in the importing application or DLL. The
original name of the function, as it is defined in Read, may or
may not be known and is not included in the IMPORTS statement.
-♦-