-
-
[分享]IDA插件开发VS配置
-
发表于: 2023-5-10 15:02 5573
-
#include "ida.hpp" #include "idp.hpp" #include "loader.hpp" extern "C" plugin_t PLUGIN = { IDP_INTERFACE_VERSION, 0, []()->size_t { msg("init"); return PLUGIN_KEEP; }, []() { msg("term"); }, [](size_t arg)->bool { msg("run"); return true; }, "comment", "help", "wanted_name", "wanted_hotkey" };
x86配置
添加SDK头文件目录
链接x86的lib (ida.lib)
修改函数约定为__stdcall
添加预定义 __IDP__ __NT__
x64配置
在x86基础上改为链接x64的lib
增加预定义 __EA64__
生成DLL名称后加64
赞赏
看原图
赞赏
雪币:
留言: