I am using Microsoft Visual C++ 2010.
If I have a function like this:
const char* blah(void);
and I want to call it like this:
__asm {
call blah;
...
}
How do I get the return value of the function in the assembly?
I am using Microsoft Visual C++ 2010.
If I have a function like this:
const char* blah(void);
and I want to call it like this:
__asm {
call blah;
...
}
How do I get the return value of the function in the assembly?
See for instance http://msdn.microsoft.com/en-us/library/k2b2ssfy(VS.80).aspx.