LINK Help (linkx.hlp) (Table of Contents; Topic list)
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.
                                    -♦-