用AheadLib进行简单的DLL注入

参考链接:http://www.voidcn.com/article/p-hwvwbvwu-xz.html 1、首先编写要注入的DLL文件:dllTest_dll.dll 只进行两个数的简单相加 #include "dllTest_dll.h" int add(int x,int y) { return x+y; } DLL的头文件dllTest_dll.h #ifndef LIB_H #de
相关文章
相关标签/搜索