3
IDA 4.9에서 StretchBlt와 같은 가져온 함수의 인수 유형/이름을 변경할 수 있습니까? 그것은 수동에서IDA (4.9) 가져온 함수의 정의를 변경할 수 있습니까?
... .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.9 프리웨어 버전? – anonymous