The tag has no wiki summary.

learn more… | top users | synonyms

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: ...
6
votes
1answer
1k views

Why does go's compiler “gc” use a different calling convention than C?

C uses the cdecl, which I've looked into and called with from assembly. It feels well enough, so why break the compatibility? Why was another convention needed?
8
votes
2answers
195 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
2answers
83 views

error C2664 due to cdecl and myclass conflict

I'm trying to join an old piece of code in C to my present VC++ project: // .h class DMSinv : public CDialog { double finte(double z); double ITFStolz(double Zp1, double Zp2, ...
1
vote
1answer
52 views

How to change procedure name in DLL

When I compile DLL in C++ Builder with my procedure extern "C" __declspec(dllexport) __cdecl void show_m(void) { MessageBox(NULL, "MSG", "COTI DLL", MB_OK |MB_ICONINFORMATION); } I can see in ...
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
154 views

Library for parsing C Type Declarations? [closed]

I am trying, and having little luck, to find an open source library (either written in C or C++) to help me parse arbitrary C/C++ type declarations (e.g declarations like void *(*(*foo[])( int, void * ...
2
votes
1answer
155 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
2answers
202 views

Dumpbin shows strange method name (generating exporting function in MS Visual C++)

I have created new Win32 project in my VS and have selected Dynamic Library ( *.dll ) for this aim. I have defined some exporting function in the main file: __declspec(dllexport) int TestCall(void) ...
1
vote
0answers
126 views

_beginthread implementation in Windows Forms Application

I've tried to create thread with simple _beginthread function in Windows Forms Application (I did it successfully with making console application. private: System::Void __cdecl counter() { ...
7
votes
2answers
303 views

Why should I not use __fastcall instead the standard __cdecl?

I'd listening some people saying __fastcall is faster than __cdecl and __stdcall cause it put two parameters in register, instead of the one of other calls; but, in other hand, this is not the ...
0
votes
1answer
139 views

Can't link to lib after VS2010 upgrade (__cdecl vs __thiscall?)

Any help much appreciated, my forehead's getting bruised. We have a big open source DICOM library (dcmtk) we use as a static lib. It's unmanaged C++, and we're linking to it from a managed C++ DLL ...
2
votes
1answer
77 views

What does the Apple documentation mean when it refers to the correct place to include ARC attributes?

When casting around (no pun intended) to clarify when to use __strong in a variable declaration I came across these lines in the Transitioning to ARC Release Notes: You should decorate variables ...
0
votes
2answers
528 views

g++ cdecl calling convention with Steinberg VST SDK

As far as I have researched, I see that GNU C by default uses cdecl for function calls. The VST SDK explicitly defines the calls as cdecl when compiling with GNU C, and it spits out the following ...
6
votes
1answer
439 views

C++ and FULLY dynamic functions

I have a problem with detours. Detours, as you all know, can only move among 5 bytes of space (i.e a 'jmp' call and a 4 byte address). Because of this it is impossible to have the 'hook' function in a ...
1
vote
1answer
266 views

How to force cdecl on variadic function

I'm writing a 64bit operating system using g++, and I have a variadic function like: void DbgPrint(const char *fmt, ...); which shall behave quite like printf. The problem here is that g++ follows ...
3
votes
2answers
186 views

_cdecl calling convention

In an article about the _cdecl calling convention, the writer mentioned: Release local storage When the function allocates local, temporary space, it does so by decrementing from the stack ...
4
votes
3answers
376 views

Assuming a calling convention when combining C and x86 Assembly

I have some assembly routines that are called by and take arguments from C functions. Right now, I'm assuming those arguments are passed on the stack in cdecl order. Is that a fair assumption to make? ...
3
votes
2answers
572 views

cdecl error: expected initializer before

I have a problem with the cdecl calling convention: void Test1(char* str, ...) // ok {} void cdecl Test2(char* str, ...) // error: expected initializer before 'Test2' {} int main() {} ...
2
votes
1answer
642 views

The value of ESP was not properly saved… and C/C++ calling conventions

I am writing an application using the OpenCV libraries, the Boost libraries and a pieve of code that I have downloaded from this LINK. I have created a project under the same solution with Thunk32 and ...
0
votes
1answer
1k views

gcc cdecl calling convention

test a cdecl calling convention,but it's a little confusion about this: original C code: int __attribute__((cdecl)) add(int a,int b) { int i; i = a+b; return i; } void ...
3
votes
2answers
622 views

__cdecl forcing prefix with underscore

My company provides a third party with a DLL which provides them with API functions they can use to connect to our application. The DLL was written in VC9, and the API functions used VC's default ...
5
votes
1answer
1k views

AccessViolationException when PInvoking C++ DLL (cdecl calling convention problem?) [closed]

I've spent all day researching this, and I'm none the wiser: I have a C# DLL which PInvokes a method in a C++ DLL. I have had no problems doing this when compiling in Debug mode, but when compiling ...
3
votes
2answers
293 views

C#/.NET Generics and Cdecl Varargs Bug?

Why does Foo() succeed but Bar() throws a BadImageFormatException? using System.Runtime.InteropServices; using System.Text; static class Program { [DllImport("msvcrt.dll", CallingConvention = ...
0
votes
0answers
259 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
751 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 ...
16
votes
4answers
2k views

What does “cdecl” stand for?

Yes, I know that "cdecl" is the name of a prominent calling convention, so please don't explain calling conventions to me. What I'm asking is what the abbreviation (?) "cdecl" actually stands for. I ...
4
votes
4answers
427 views

What does the following code do? [duplicate]

Possible Duplicate: How do you read C declarations? I Don't understand the following: int‬‬ ‪* (*(*p)[2][2])(int,int); Can you help?
0
votes
1answer
1k views

Pass an argument from C to assembly?

How can I pass an argument from a C main function to an assembly function? I know that my custom function has to look something like: void function(char *somedata) __attribute__((cdecl)); Now how ...
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
376 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
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
687 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.
28
votes
12answers
3k views

How do you read C declarations?

I have heard of some methods, but none of them have stuck. Personally I try to avoid complex types in C and try to break them into component typedef. I'm now faced with maintaining some legacy code ...