home *** CD-ROM | disk | FTP | other *** search
/ Windows Shareware GOLD / NuclearComputingVol3No1.cdr / _bbs4 / f1476.zip / RESGAUGE.DEF < prev    next >
Text File  |  1991-06-04  |  977b  |  34 lines

  1. ; ===========================================================================
  2. ; resgauge.def -- module definition file for the Resource Gauge application.
  3. ; ===========================================================================
  4.  
  5.  
  6. ; module name
  7. NAME        ResGauge
  8.  
  9. ; version control or copyright string
  10. DESCRIPTION    'Resource Gauge v1.0 -- (c) 1991, Richard Franklin Albury'
  11.  
  12. ; required for all Windows applications
  13. EXETYPE        WINDOWS
  14.  
  15. ; generates an error message if the application is run without Windows
  16. STUB        'WINSTUB.EXE'
  17.  
  18. ; code can be moved in memory and discarded/reloaded
  19. CODE        PRELOAD MOVEABLE DISCARDABLE
  20.  
  21. ; data must be MULTIPLE if program can be invoked more than once
  22. DATA        PRELOAD MOVEABLE SINGLE
  23.  
  24. ; size in bytes of the application's local heap
  25. HEAPSIZE    1024
  26.  
  27. ; size in bytes of the application's stack
  28. STACKSIZE    5120       ; recommended minimum for Windows is 5120
  29.  
  30.  
  31. ; ===================
  32. ; end of resgauge.def
  33. ; ===================
  34.