I would like to know - is it possible to access a C++ private or public function, which is a member of a dynamic object (correct terminology?) from assembly code?
Code: Select all
extern "C" {void function();}
class MyClass
{
private:
void function();
}
void main()
{
MyClass test = new myClass();
}
Code: Select all
_asmFunction:
mov eax, <<Need to place test->function() in here>>
call eax