Tagged Questions
27
votes
7answers
16k views
What is __stdcall?
I'm leaning some win32 programming, and the WinMain prototype looks like:
int WINAPI WinMain ( HINSTANCE instance, HINSTANCE prev_instance, PSTR cmd_line, int cmd_show )
I was confused as to what ...
5
votes
3answers
293 views
Why did Microsoft choose stdcall as their API convention?
Is there a good reason?
Are their internal functions (not exported) also stdcall convention?
0
votes
1answer
179 views
Can stdcall have a variable arguments?
As far as I know, only the caller-clean-stack convention can use variable arguments.
By the way, the WinApi StringCchPrintfW is declared like this.(I removed the SAL)
_inline HRESULT _stdcall
...