autorun.def

来自「C:Documents and SettingsAdministrator桌面V」· DEF 代码 · 共 19 行

DEF
19
字号
; Module-Definition file for AutoRun -- used by LINK.EXE
; ==========================================================================
NAME         AutoRun       ; application's module name
DESCRIPTION  'Sample Microsoft Windows AutoRun Application'

;CODE can be moved in memory and discarded/reloaded
CODE  PRELOAD MOVEABLE DISCARDABLE

;DATA must be MULTIPLE if program can be invoked more than once
DATA  PRELOAD MOVEABLE MULTIPLE

HEAPSIZE     1024
STACKSIZE    5120      ; recommended minimum for Windows applications

; Export all callback and externally available functions
EXPORTS
	WndProc   @1   ; name of window processing function
	About     @2   ; name of "About" processing function

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?