Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
12answers
2k 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 ...
13
votes
4answers
969 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 ...
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
1answer
415 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
3answers
81 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() {} ...
3
votes
2answers
147 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 = ...
3
votes
4answers
298 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
2answers
231 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 ...
1
vote
1answer
78 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 ...
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
183 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 ...
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
1answer
324 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 ...
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 ...