views:

7538

answers:

7
+13  Q: 

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 this WINAPI identifier was for and found:

#define WINAPI      __stdcall

What does this do? I'm confused by this having something at all after a return type. What is __stdcall for? What does it mean when there is something between the return type and function name?

+23  A: 

__stdcall is the calling convention used for the function. This tells the compiler the rules that apply for setting up the stack, pushing arguments and getting a return value.

There are a number of other calling conventions, __cdecl, __thiscall, __fastcall and the wonderfully named __naked. __stdcall is the standard calling convention for Win32 system calls.

Wikipedia covers the details.

It primarily matters when you are calling a function outside of your code (e.g. an OS API) or the OS is calling you (as is the case here with WinMain). If the compiler doesn't know the correct calling convention then you will likely get very strange crashes as the stack will not be managed correctly.

Rob Walker
Nitpick: that should be cdecl
Steve Fallows
See this question for an example of very starnge crashes http://stackoverflow.com/questions/696306/run-time-check-failure-0-loading-queryfullprocessimagename-from-kernel32-dll
sharptooth
+2  A: 

It has to do with how the function is called- basically the order in which things are put on the the stack and who is responsible for cleanup.

Here's the documentation, but it doesn't mean much unless you understand the first part:
http://msdn.microsoft.com/en-us/library/zxk0tw93.aspx

Joel Coehoorn
+6  A: 

C or C++ itself do not define those identifiers. They are compiler extensions and stand for certain calling conventions. That determines where to put arguments, in what order, where the called function will find the return address, and so on. For example, __fastcall means that arguments of functions are passed over registers.

The Wikipedia Article provides an overview of the different calling conventions found out there.

Johannes Schaub - litb
+4  A: 

The answers so far have covered the details, but if you don't intend to drop down to assembly, then all you have to know is that both the caller and the callee must use the same calling convention, otherwise you'll get bugs that are hard to find.

MovEaxEsp
+1  A: 

I agree that all the answers so far are correct, but here is the reason. Microsoft's C and C++ compilers provide various calling conventions for (intended) speed of function calls within an application's C and C++ functions. In each case, the caller and callee must agree on which calling convention to use. Now, Windows itself provides functions (APIs), and those have already been compiled, so when you call them you must conform to them. Any calls to Windows APIs, and callbacks from Windows APIs, must use the __stdcall convention.

Windows programmer
and it must not be confused with _standard_call in that it is standard-c ! one might think that would be the point of __stdcall if one doesnt know better
Johannes Schaub - litb
A small nitpick: there are a few Windows APIs that use __cdecl instead of __stdcall - usually ones that take variable number of parameters, such as wsprintf().
Michael Burr
You're right. It's named to look like a CRT function but it's an API. By any chance do you know how to P/Invoke it from C#?
Windows programmer
I haven't tested this, but pinvoke.net gives this signature: "static extern int wsprintf([Out] StringBuilder lpOut, string lpFmt, ...);"
Michael Burr
My intuition says that the C# compiler wouldn't know to use the __cdecl convention on that one.
Windows programmer
+1  A: 

__stdcall is used to put the function arguements in the satck. After the completion of the function it automatically deallocates the memory. This is used for fixed arguements.

void __stdcall fnname(int,int*)

{

}

int main() { CreateThread(NULL,0,fnname,int,int*......) } here the fnname has args it directly push into the stack

+1  A: 

Have a look at:

[http://www.codeproject.com/KB/cpp/calling_conventions_demystified.aspx][1]