bik78
June 3rd, 2002, 01:21
Hi all!
A little question: I have a dll compiled with VC6. I know that it contains a class named Cls and that it has a method named Meth1. So I can do:
Now, how do I find the implementation of this Meth1 in a IDA listing? All the functions are named sub_0_1000A50A and the like... Can I somehow find out the offset of this method???
A little question: I have a dll compiled with VC6. I know that it contains a class named Cls and that it has a method named Meth1. So I can do:
Code:
Cls *c = new Cls();
*c->Meth1(1, 2);
Now, how do I find the implementation of this Meth1 in a IDA listing? All the functions are named sub_0_1000A50A and the like... Can I somehow find out the offset of this method???