Hello all,
from MSDN:
/*
This is the default calling convention used by C++ member functions that do not use variable arguments. Under thiscall, the callee cleans the stack, which is impossible for vararg functions. Arguments are pushed on the stack from right to left, with the this pointer being passed via register ECX on the x86 architecture.
*/
I think if thiscall will be natively supported it will be very usefull... for some wrap's around C++ code....
Thank you.