3

是否可以在 IDA 4.9 中更改导入函数(如 StretchBlt)的参数类型/参数名称?手动更改是痛苦且容易出错的

...
.text:0040A49E 推送 eax ; HDC
.text:0040A49F 推 36h ; 整数
.text:0040A4A1 推 48h ; 整数
.text:0040A4A3 推 5Ah ; 整数
.text:0040A4A5 推 0 ; 整数
.text:0040A4A7 推送 ecx ;HDC
.text:0040A4A8 调用 edi ;StretchBlt

...
.text:0040A49E 推送 eax ; HDC srcHDC
.text:0040A49F 推 36h ; int destHeight
.text:0040A4A1 推 48h ; int destWidth
.text:0040A4A3 推 5Ah ; 目标
.text:0040A4A5 推 0 ; int destX
.text:0040A4A7 推送 ecx ;HDC 目标HDC
.text:0040A4A8 调用 edi ;StretchBlt

每一次

4

1 回答 1

1

您是否尝试过编写 .IDC 脚本来搜索该注释块,然后调整前几行注释。

于 2010-07-20T20:42:07.740 回答