cmake.txt
来自「Cracker终结者——提供最优秀的软件保护技术」· 文本 代码 · 共 17 行
TXT
17 行
.obj files produced by Borland compilers link with bApiHooks.lib.
.obj files produced by Microsoft compilers link with ApiHooks.lib.
.obj files produced by LCC-Win32 link with lApiHooks.lib.
DLLs written in LCC must export something.
Use __EXPORT and deffile in order to export ApiHookChain,
GetApiHookChain and other functions instead of __declspec(dllexport).
Deffile for TLINK32 should contain:
EXPORTS ApiHookChain=_ApihookChain
or
EXPORTS GetApiHookChain=_GetApihookChain
Deffile for LCCLNK should contain:
EXPORTS ApiHookChain=ApihookChain
or
EXPORTS GetApiHookChain=GetApihookChain
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?