ex25c.def

来自「visual c++技术内幕范例的源代码」· DEF 代码 · 共 22 行

DEF
22
字号
; ex25c.def : Declares the module parameters for EX25C.DLL
;

LIBRARY      EX25C
DESCRIPTION  'Ole Automation in a DLL'

EXETYPE      WINDOWS

CODE         PRELOAD MOVEABLE DISCARDABLE
DATA         PRELOAD MOVEABLE SINGLE

HEAPSIZE     1024

SEGMENTS
	WEP_TEXT FIXED PRELOAD

EXPORTS
	WEP @1 RESIDENTNAME ;; required WEP entry point (uses library WEP routine)
; add these to support OLE 2
    DllGetClassObject
    DllCanUnloadNow

⌨️ 快捷键说明

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