wiz16.def
上传用户:jlteech
上传日期:2007-01-06
资源大小:349k
文件大小:1k
源码类别:

压缩解压

开发平台:

Visual C++

  1. ;module-definition file for WiZip-- used by link.exe
  2. NAME    WiZ       ; application's module name
  3. DESCRIPTION 'Windows Info-ZIP 4.0 by Info-ZIP, Mike White 1996'
  4. EXETYPE      WINDOWS
  5. STUB    'WINSTUB.EXE' ; Generates error message if application
  6.                       ; is run without Windows
  7. ;CODE can be moved in memory and discarded/reloaded
  8. CODE  MOVEABLE PRELOAD
  9. ;DATA must be MULTIPLE if program can be invoked more than once
  10. DATA  MOVEABLE MULTIPLE PRELOAD
  11. HEAPSIZE  24000 ; need heap for buffers
  12. STACKSIZE 24000 ; need plenty of stack
  13. ; WiZip walks a fine line between keeping heap+stack
  14. ; and automatics under <64K and not. Change HEAPSIZE and STACKSIZE
  15. ; only if you have the time to experiment.