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
294 views

Why did Microsoft choose stdcall as their API convention?

Is there a good reason? Are their internal functions (not exported) also stdcall convention?
3
votes
4answers
296 views

Why isn't PInvoke crashing in case of violated calling convention (in .NET 3.5)?

My solution has an unmanaged C++ DLL, which exports a function, and a managed application that PInvokes this function. I've just converted the solution from .NET 3.5 to .NET 4.0 and got this ...
2
votes
1answer
91 views

Calling LONGLONG RtlLargeIntegerDivide(LONGLONG, LONGLONG, LONGLONG*) in NASM (stdcall)

I'm trying to call the following function: long long RtlLargeIntegerDivide(long long dividend, long long divisor, long long* pRemainder) in assembly code (NASM). It uses the stdcall calling ...
2
votes
1answer
1k views

Writing naked functions with custom prolog and epilog code in Visual Studio

I'm writing some plugin code in a dll that is called by a host over which I have no control. The host assumes that the plugins are exported as __stdcall functions. The host is told the name of the ...
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 ...
0
votes
3answers
788 views

How do I compile boost using __cdecl calling convention?

I have a project compiled using __cdecl calling convention (msvc2010) and I compiled boost using the same compiler using the default settings. The project linked with boost but I at runtime I got an ...