Tagged Questions

7
votes
3answers
216 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, ...
6
votes
2answers
129 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.
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
3answers
481 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
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, ...
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
369 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* ...
0
votes
1answer
52 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
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
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
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() { ...