wiz16.def
来自「有关zip的一个开发实例。主要包括图片和程序源代码。」· DEF 代码 · 共 25 行
DEF
25 行
;module-definition file for WiZip-- used by link.exe
NAME WiZ ; application's module name
DESCRIPTION 'Windows Info-ZIP 4.0 by Info-ZIP, Mike White 1996'
EXETYPE WINDOWS
STUB 'WINSTUB.EXE' ; Generates error message if application
; is run without Windows
;CODE can be moved in memory and discarded/reloaded
CODE MOVEABLE PRELOAD
;DATA must be MULTIPLE if program can be invoked more than once
DATA MOVEABLE MULTIPLE PRELOAD
HEAPSIZE 24000 ; need heap for buffers
STACKSIZE 24000 ; need plenty of stack
; WiZip walks a fine line between keeping heap+stack
; and automatics under <64K and not. Change HEAPSIZE and STACKSIZE
; only if you have the time to experiment.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?