OK, i'll take a look at adding __reg stubs if this is the preferred method.
don't forget also that register functions return their result in context->Eax...
so should for example: exception * MSVCRT_exception_opequals(const exception * rhs, CONTEXT86* context) { : return _this; }
Be void MSVCRT_exception_opequals(const exception * rhs, CONTEXT86* context) { : context->Eax = (DWORD)_this; } ?
I assume the caller will look in the context structure passed in for the return val? Jason