scan.def
来自「清华紫光twain扫描仪编程接口范例」· DEF 代码 · 共 22 行
DEF
22 行
; module-definition file for generic -- used by LINK.EXE
NAME Sample32 ; application's module name
DESCRIPTION 'Sample Microsoft Windows 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
; All functions that will be called by any Windows routine
; MUST be exported.
EXPORTS
MainWndProc @1 ; name of window processing function
About @2 ; name of "About" processing function
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?