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