What is __stdcall?
Asked Answered
F

7

176

I'm learning about 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?

Frederickson answered 18/11, 2008 at 2:15 Comment(0)
P
204

__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 __declspec(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.

Perch answered 18/11, 2008 at 2:18 Comment(3)
See this question for an example of very starnge crashes #696806Neddra
If I'm not mistaken, then these calling conventions control how the compiler produces the assembly code. When interfacing with the assembly code, it is then critical that the calling convention is taken note of to prevent stack issues. There is a nice table here documenting some conventions: msdn.microsoft.com/en-us/library/984x0h58.aspxMisdirect
Can we say that this would disable certain illegal optimizations ?Zarah
H
47

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.

Henhouse answered 18/11, 2008 at 2:20 Comment(0)
B
25

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.

Bluebell answered 18/11, 2008 at 2:24 Comment(0)
W
12

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.

Waine answered 18/11, 2008 at 2:31 Comment(5)
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 betterHenhouse
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().Cruel
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#?Waine
I haven't tested this, but pinvoke.net gives this signature: "static extern int wsprintf([Out] StringBuilder lpOut, string lpFmt, ...);"Cruel
My intuition says that the C# compiler wouldn't know to use the __cdecl convention on that one.Waine
R
5

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

Rosanne answered 18/11, 2008 at 2:19 Comment(0)
N
5

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

void __stdcall fnname ( int, int* )
{
    ...
}

int main()
{
    CreateThread ( NULL, 0, fnname, int, int*...... )
}

Here the fnname has args it directly push into the stack.

Nolpros answered 17/4, 2009 at 4:3 Comment(0)
N
1

I never had to use this before until today. Its because in my code I am using multi-threadding and the multi-threading API I am using is the windows one (_beginthreadex).

To start the thread:

_beginthreadex(NULL, 0, ExecuteCommand, currCommand, 0, 0);

The ExecuteCommand function MUST use the __stdcall keyword in the method signature in order for beginthreadex to call it:

unsigned int __stdcall Scene::ExecuteCommand(void* command)
{
    return system(static_cast<char*>(command));
}
Norse answered 23/5, 2016 at 3:13 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.