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

  1. ; module-definition file for generic -- used by LINK.EXE
  2.  
  3. NAME         Tdosmem       ; application's module name
  4.  
  5. DESCRIPTION  'Sample Microsoft Windows Application'
  6.  
  7. EXETYPE      WINDOWS       ; required for all Windows applications
  8.  
  9. ;CODE can be moved in memory
  10. CODE  PRELOAD MOVEABLE
  11.  
  12. ;DATA must be MULTIPLE if program can be invoked more than once
  13. DATA  PRELOAD MOVEABLE MULTIPLE
  14.  
  15.  
  16. HEAPSIZE     1024  
  17. STACKSIZE    5120
  18.  
  19. EXPORTS     MainWndProc
  20.             About
  21.