home *** CD-ROM | disk | FTP | other *** search
/ Shareware Supreme Volume 6 #1 / swsii.zip / swsii / 201 / WPJV1N2.ZIP / HAXTON.ZIP / LIB2.DEF < prev    next >
Text File  |  1993-01-27  |  556b  |  26 lines

  1. ;*********************************************************************
  2. ;*
  3. ;* lib2.def: module definition library file for DLL test
  4. ;*
  5. ;********************************************************************
  6.  
  7. LIBRARY            LIB2
  8.  
  9. DESCRIPTION        'DLL for RODSAPP 1990'
  10. EXETYPE            WINDOWS
  11.  
  12. CODE            PRELOAD MOVEABLE DISCARDABLE
  13. DATA            PRELOAD MOVEABLE SINGLE
  14.  
  15. SEGMENTS
  16.   Initialization_code        MOVEABLE    DISCARDABLE    PRELOAD
  17.   About_code            MOVEABLE            PRELOAD
  18.  
  19. HEAPSIZE        1024
  20.  
  21. EXPORTS        
  22.     WEP        @1    RESIDENTNAME
  23.     testRoutine    @2    
  24.     testVars    @3    
  25.     About        @4    
  26.