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