The stdcall tag has no wiki summary.
-1
votes
0answers
21 views
WSO2/WSF linking standard [closed]
Does anyone know how to link the WSO2/WSF framework to a project in VS 2010. I've tried all the available methods in VS 2010 (__stdcall, __fastcall, _cdecl), but none of them worked. It compiles OK, ...
0
votes
0answers
24 views
Using Delphi DLLs with VS2010. “Cannot find the entry point of function _DataReady@0 in DSOLink.dll”
I am trying to use digital scope Vellman PCSU1000 in one of my projects which I am writing in C++ in Visual Studio 2010.
In order to do this I need to use two DLLs provided by the producer of the ...
2
votes
1answer
99 views
How to create default parameters for DLL procedures (stdcall)?
I have made a DLL which exports several functions (with stdcall).
I want to have some of them accept parameters or not. So a lazy programmer can just call it without any parameters.
I read somewhere ...
0
votes
1answer
46 views
c++-builder: convert into stdcall type
I'm currently trying to port an old owl-c++-builder-projekt to use XE2 and owlnext.
In the old file, I could simply call a line
(FARPROC)LP_I2COpen = GetProcAddress(Hi_I2C, "I2COpen");
While ...
3
votes
3answers
71 views
When using PInvoke, why use __stdcall?
I have been using PInvoke to let my C# application call C++ functions I wrote.
Now, I keep hearing everywhere and beyond that I need to define those externally accessible functions with the __stdcall ...
0
votes
1answer
33 views
__cdecl wrapping WinSock function as callback in plain C and call it
Have prepared such function, where some WSA functions will be used as callback:
int StartWinSock(int (*WSAStartup)(WORD, LPWSADATA))
{
}
But when in other code, I'm trying to launch it:
...
9
votes
2answers
208 views
Why are Cdecl calls often mismatched in the “standard” P/Invoke Convention?
I am working on a rather large codebase in which C++ functionality is P/Invoked from C#.
There are many calls in our codebase such as...
C++:
extern "C" int __stdcall InvokedFunction(int);
With a ...
0
votes
0answers
168 views
Importing an Embarcadero C++ Builder XE3 DLL into Embarcadero C++ Builder XE3
I try to create a DLL in Embarcadero C++ Builder XE3, and use it in a test-project in the same environment.
I take example on a tutorial which code does not give a good result for me (!) : ...
0
votes
3answers
85 views
Assembly language - Calling convention
Can someone give me some real example to help me understand what is the callee and what is the caller in assembly language? I have been through most of the sources, but still I can't get how to ...
2
votes
1answer
159 views
assigning functions to std::function with same signature, but different calling convention fails
the following compiles and runs just fine with mingw 4.7.2 and -m64 flag.
but with -m32 or with any mingw 32bit release it fails to compile. is it a bug or am i missing a compiler flag?
#include ...
1
vote
1answer
240 views
Plainly and simply, why do we use _stdcall?
I've come across calling conventions whilst studying states for game making with C++.
In a previous question someone stated that MSDN doesn't explain _stdcall very well - I agree.
What are the ...
1
vote
0answers
101 views
C# String to pointer in unmanaged class library
An existing application is going to import my class library. I am trying to do this in C# since I have a lot more experience in C# than C++. The existing application uses __stdcall which is originally ...
1
vote
1answer
334 views
Using std::bind with __stdcall function
How does one can use std::bind (not boost::bind) on __stdcall function or is it even possible in current implementation?
When i try to compile following example:
std::function<LRESULT ...
2
votes
1answer
88 views
COM Server: ESP not saved across a function call when calling interface method
I'm in the process of implementing a COM server in an EXE file. To be precise, I'm adding a COM interface to an existing application. with the ultimate goal of automating the application.
The first ...
3
votes
1answer
139 views
Is there any equivalent for stdcall in GCC?
I'm working on my own kernel using GCC, and when calling C functions from asm code, I have to do add esp,xx myself. After some searching I found that stdcall is a Microsoft invention and can't use it ...
0
votes
2answers
226 views
C - DLL needs to be __stdcall and import __cdecl lib
I'm compiling a DLL which needs to use portaudio. It uses all sorts of windows libraries for sockets and such too, but the linker wouldn't recognize the portaudio library. Then I remembered portaudio ...
2
votes
1answer
229 views
How to make stdcall from Go
I have a pointer to a COM interface and would like to take the function pointers from its virtual table and make method calls. To do this I need to make stdcall method calls. In Go how do I make a ...
0
votes
1answer
199 views
Fastcall in 64 bit
I've been reading up on the differences in 32bit calling conventions. The fastcall vs. stdcall ordeal that is.
From what I read there was great confusion with the two conventions, and 64 bit was ...
1
vote
2answers
165 views
Creating a map of __stdcall
I'm trying to create a map of function names and function pointers using __stdcall. Here is how I currently get my function pointers:
typedef int (CALLBACK* InitializeDLL)(int,int);
InitializeDLL ...
2
votes
2answers
268 views
Pattern of component with callback system with stdcall calling convention
This question arised from this one.
The problem is: create non visual component which can hold many callbacks commands from system.
User can define unlimited number of callbacks in the IDE. Callbacks ...
0
votes
1answer
182 views
Can I use __stdcall convention while using Xerces-C 3.0? I get linker errors
In my project it is crucial I use __stdcall. However, I get this:
1>ExchangeParser.obj : error LNK2001: unresolved external symbol "public: static void __cdecl ...
1
vote
1answer
158 views
Is preceding a function with CALLBACK or WINAPI or PASCAL (in MFC) is absolutely necessary or only for readability purpose?
In MFC VC++, setTimer function is setted using a CALLBACK procedure. From the link I read that
A function that is marked with __stdcall uses the standard calling
convention so named because all ...
1
vote
2answers
412 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 ...
0
votes
1answer
352 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 ...
1
vote
2answers
1k 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 ...
0
votes
2answers
729 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 ...
3
votes
2answers
562 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 ...
6
votes
2answers
605 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 ...
5
votes
3answers
2k 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;
...
7
votes
3answers
640 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, ...
0
votes
0answers
260 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 ...
3
votes
4answers
753 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 ...
7
votes
2answers
4k 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, ...
1
vote
1answer
850 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 ...
2
votes
1answer
139 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 ...
0
votes
2answers
295 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
440 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
...
5
votes
3answers
476 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
2answers
92 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 ...
20
votes
8answers
17k views
stdcall and cdecl
There are two types of calling conventions - stdcall and cdecl. I have few questions on them.
When a cdecl function is called by the caller, how does a caller
know if it should free up the stack ? ...
1
vote
2answers
379 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* ...
5
votes
3answers
6k 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 ...
0
votes
3answers
1k 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 ...
6
votes
4answers
690 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.
3
votes
1answer
2k 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
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 ...
7
votes
9answers
6k 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 ...
2
votes
1answer
2k 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
votes
3answers
850 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()
{
...
51
votes
7answers
29k 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 ...

