Q. Difference between __cdecl and __stdcall ?
A. Responsibility of cleaning up of arguments on stack is caller’s in case of __cdecl and is callee’s in case of __stdcall. Default call is __cdecl.
some more points to keep in mind:
> Since __stdcall does stack cleanup, the (very tiny) code to perform this task is found in only [...]
Filed under: Programming | 1 Comment »