14.c语言dll注入

1 #include <Windows.h>
2 
3 //dll不需要main函数
4 //导出接口
5 _declspec(dllexport) void go()
6 {
7     MessageBoxA(0, "注入测试", "注入成功", 0);
8 }

 

posted @ 2017-12-30 17:07  喵小喵~  阅读(435)  评论(0编辑  收藏  举报