home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c480 / 20.ddi / SAMPLES / MEMORY / MEMORY.DE_ / MEMORY.DE
Encoding:
Text File  |  1993-02-08  |  448 b   |  24 lines

  1. NAME    Memory
  2.  
  3. DESCRIPTION 'Sample Microsoft Windows Application'
  4.  
  5. EXETYPE WINDOWS
  6.  
  7. STUB    'WINSTUB.EXE'
  8.  
  9. CODE    PRELOAD MOVEABLE
  10.  
  11. SEGMENTS
  12.     MEMORY_MAIN    PRELOAD    MOVEABLE
  13.     MEMORY_INIT    LOADONCALL MOVEABLE DISCARDABLE
  14.     MEMORY_WNDPROC PRELOAD    MOVEABLE
  15.     MEMORY_ABOUT   LOADONCALL MOVEABLE DISCARDABLE
  16.  
  17. DATA    PRELOAD MOVEABLE MULTIPLE
  18.  
  19. HEAPSIZE  1024
  20.  
  21. EXPORTS
  22.     MainWndProc      @1
  23.     About            @2
  24.