是否可以在IDA 4.9中更改导入函数的参数类型/参数名称,如StretchBlt? 从
手动更改是痛苦且容易出错的... .text:0040A49E push eax ; HDC .text:0040A49F push 36h ; int .text:0040A4A1 push 48h ; int .text:0040A4A3 push 5Ah ; int .text:0040A4A5 push 0 ; int .text:0040A4A7 push ecx ; HDC .text:0040A4A8 call edi ; StretchBlt
到
... .text:0040A49E push eax ; HDC srcHDC .text:0040A49F push 36h ; int destHeight .text:0040A4A1 push 48h ; int destWidth .text:0040A4A3 push 5Ah ; int destY .text:0040A4A5 push 0 ; int destX .text:0040A4A7 push ecx ; HDC destHDC .text:0040A4A8 call edi ; StretchBlt
每次
答案 0 :(得分:1)
您是否尝试编写.IDC脚本来搜索该注释块,然后调整前一行注释。