在线笔记
全部博文(596)
发布时间:2014-09-17 16:21:45
Detours vs. MhookDetours is available for free with a noncommercial license but it only supports the x86 platform. Detours can also be licensed for commercial use which also gives you full x64 support, but you only get to see the licensing conditions after signing an NDA.Mhook is fr.........【阅读全文】
发布时间:2014-09-17 15:04:35
http://wenku.baidu.com/view/0946ce1155270722192ef74f.htmldemo1#include "stdafx.h" #include <Windows.h> #include <dbghelp.h> #pragma comment( lib, "dbghelp.lib") ULONG ReplaceIATEntryInOneMod( PCSTR pszCalleeModName, &nbs.........【阅读全文】
发布时间:2014-09-16 15:45:49
可能的原因:1. memcpy2. 内存对齐3. memsetDebug版本project->配置属性->c/c++->代码生成->基本运行时检查 不是默认值,貌似比Release严格Release版本project->配置属性->c/c++->代码生成->基本运行时检查 为默认值.........【阅读全文】
发布时间:2014-08-24 12:17:54
WDK 7.1//makefile!INCLUDE $(NTMAKEENV)\makefile.def//sourcesTARGETNAME=demoTARGETPATH=objTARGETTYPE=PROGRAMUMTYPE=ntUSE_NTDLL=1MINWIN_SDK_LIB_PATH=$(SDK_LIB_PATH)INCLUDES=$(DDK_IN.........【阅读全文】