Hi,

Need urgent help with the following problem
trying to call a class member function from a class using inline assembly

is this possible at all?

Code:
  __asm { 
        __asm push edx                  
        __asm push eax                  
        __asm call MyFunction
        __asm pop ecx                  
        __asm pop ecx                   
}
MyFunction is the memberfunction

the error is:
error C2420: 'MyFunction' : illegal symbol in first operand
error C2415: improper operand type

I'm using MSVC++6.0

I guess this has something to do with the name mangling of the member function, or?