|
||
The __stdcall calling convention |
||||||||||||||
The __stdcall calling convention is used to call Win32 API functions. The called function cleans up the stack, so the compiler makes vararg functions __cdecl. Functions that use this calling convention require a function prototype.
|
||||||||||||||
The following list shows the implementation of this calling convention.
|
||||||||||||||
The Visual C '/Gz' compiler options specifies __stdcall for all functions not explicitly declared with a different calling convention. |
||||||||||||||