Subroutines in the code may have variables and arguments declared at the beginning of the subroutine before actual code. And my question is that how can I know where the variables and arguments are used,such as if I want to know the address of the instruction that use a variable or an argument.
......
004014F0 Rect = tagRECT ptr -1Ch
......
0040151C lea eax,[esp + 080h + Rect]
.......
According to the above code, I need the address 0040151C where Rect is used.
thank you very much.







