3

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

毎回

4

1 に答える 1

1

そのコメント ブロックを検索する .IDC スクリプトを作成してから、前の行のコメントを調整してみましたか。

于 2010-07-20T20:42:07.740 に答える