LINK Help (linkx.hlp) (Table of Contents; Topic list)
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.
Module-Definition File: Example
 Module-Definition Files                   Up Contents Index Back
─────Module-Definition File: Example────────────────────────────────────────
 
          ; Sample module-definition file
 
          LIBRARY
 
          DESCRIPTION 'Sample .DEF file for a DLL'
 
          CODE      PRELOAD
 
          STACKSIZE 1024
 
          EXPORTS
            Init    @1
            Begin   @2
            Finish  @3
            Load    @4
            Print   @5
 
     This module-definition file gives a description for a DLL. It
     includes one comment and five statements.
                                    -♦-