Tagged Questions
The stdcall tag has no wiki summary.
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 ...
7
votes
3answers
215 views
Template partial specialization for __stdcall function pointer
typedef bool (*my_function_f)(int, double);
typedef bool (__stdcall *my_function_f2)(int, double);
// ^^^^^^^^^
template<class F> class TFunction;
template<class R, class T0, ...
7
votes
9answers
4k views
Create a C# DLL That Can Be Imported in a Delphi App Using stdcall - Possible?
I have a program that I need to create a DLL for, hopefully in C#. The program is written in Delphi and I have an interface file to code to. The interface uses the stdcall calling convention.
Is it ...
6
votes
2answers
127 views
VC++ prevent all symbol name decorations
I'm working on a DLL which will be used from another language (so no import libs and including the dll's headers) using the _stdcall calling convetion. The problem is that VC++ seems to always do some ...
6
votes
4answers
424 views
In C++, do variadic functions (those with … at the end of the parameter list) necessarily follow the __cdecl calling convention?
I know that __stdcall functions can't have ellipses, but I want to be sure there are no platforms that support the stdarg.h functions for calling conventions other than __cdecl or __stdcall.
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?
4
votes
3answers
2k views
Is there STDCALL in Linux?
I'm trying to port a Windows app to Linux. This appplication marks some functions with the __stdcall attribute. However, i was told by a friend that stdcall is used only on windows and has no meaning ...
3
votes
2answers
154 views
What is the correct callback signature for a function called using ctypes in python?
I have to define a callback function in Python, one that will be called from a DLL.
BOOL setCallback (LONG nPort, void ( _stdcall *pFileRefDone) (DWORD nPort, DWORD nUser), DWORD nUser);
I tried ...
3
votes
3answers
478 views
declspec and stdcall vs declspec only
I'm a new person to C++ dll import topic and may be my question is very easy but I can not find it on google.
I have a very simple C++ win32 dll:
#include <iostream>
using namespace std;
...
3
votes
4answers
295 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 ...
3
votes
2answers
1k views
stdcall name mangling using extern c and dllexport vs module definitions (msvc++)
I was trying to export a simple test function for a dll to work with an application (fyi: mIRC) that specifies the calling convention as:
int __stdcall test_func(HWND mWnd, HWND aWnd, char *data, ...
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 ...
1
vote
2answers
36 views
With Mingw created static library link into VS2008 project?
What am I trying to do? ...
First, create static library with MinGW's g++ compiler.
So, simple example files are ...
test.h
#ifndef EXAMPLE_H
#define EXAMPLE_H
#include <iostream>
#ifdef ...
1
vote
2answers
74 views
mingw32 g++ and stdcall @suffix
I declared some C++ functions prototyped as follows:
extern "C" void __stdcall function();
I also have some third-party dll with exported function() - no name decorations at all.
I'm unable to ...
1
vote
1answer
368 views
__stdcall typedef g++ problem
This code compiles (as I would expect):
typedef void __stdcall (*Func)();
struct A {
static void __stdcall f() { }
};
int main() {
Func p = A::f;
}
But this one:
struct A {
typedef ...
1
vote
2answers
233 views
Mixed calling conventions make compilation errors
I have a library (C++) which has some API functions. One of them is declared as __cdecl, but gets a function poiner from __stdcall. Something like:
typedef int (__stdcall *Func)(unsigned char* ...
1
vote
1answer
958 views
Creating an MSVC import library from a DLL that uses stdcall
I have a dll that exports
extern "C" __declspec(dllexport) int __stdcall Foo( void );
A dump of the dll shows
******************************************************************************
...
0
votes
1answer
50 views
Problems manipulating strings through a stdcall to a dll
I need to create a C++ dll that will be called from another program through stdcall.
What is needed : the caller program will pass an array of string to the dll and the dll should change the string ...
0
votes
1answer
157 views
compile errors log4cxx with __stdcall and Boost 1.47.0
I'll be very pleased if you help.
My IDE is VS2010.
I'm using boost 1.47.0, especially boost::asio.
After some days of developing I decided to add log4cxx.
log4cxx needs to change calling ...
0
votes
0answers
152 views
stdcall and cdecl stack alignment size
I have two questions:
Is the stack alignment for the stdcall calling convention always 4 bytes, or is it 4 for a 32 bit machine and 8 for a 64 bit machine?
What is the stack alignment size for ...
0
votes
2answers
148 views
Linker Error LNK2019 traced back to an __stdcall i think i got the right lib - what can i do to resolve this?
I try to port a LabCVI Projekt to MSVS 2010 C++ Express. There is a line of code wich reads like this:
if (InitCVIRTE == 0) return 0;
A Linker Error occurs: LNK2019 "_InitCVIRTEEx@12" - all ...
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
2answers
86 views
Calling functions meant for threads normally
I have a function with the prototype
DWORD WINAPI blah(LPVOID arg);
Which was meant to be used with CreateThread for a threaded app.
I call it with CreateThread with no problem. But then somewhere ...
0
votes
3answers
787 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 ...
0
votes
1answer
2k views
syntax error: _stdcall — Help? Please?
I am trying to use this code to define the APIs that are needed to communicate with a card reader. Below is the header file (complete). [AtUsbHid.h]
It is throwing several errors, but I figure if the ...
-1
votes
3answers
749 views
Thought experiment with __stdcall and corrupted stack (C++)
My mind was wandering today on the topic of function pointers, and I came up with the following scenario in my head:
__stdcall int function (int)
{
return 0;
}
int main()
{
...