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 name decoration on its exported symbols. All the references ive seen say use extern "C" but this still seems to leave me with a leading underscore, and a @ plus a number after the exported name.

The worst bit is the automated means of loading extension dll's in the target language essentially does "func_name = GetProcAddress(dll, "func_name")" so using an undecorated name GetProcAddress fails, and using the decorated name it complains of an illegal variable name (@ is not allowed) :(

How can I make VC++ export somthing with no name decorations at all?

extern "C" __declspec(dllexport) int __stdcall test(int x, const char *str);

dumpbin.exe

00011366 _test@8 = @ILT+865(_test@8)

link|improve this question
is there a reason of using stdcall instead of cdecl? – CharlesB Jul 11 '11 at 11:55
1  
Which language are you targeting ? Why does GetProcAddress fail, it returns the address of the function not the name and I don't know any programming languages that forbid the use of a '@' in strings – SS 'Kain' Jul 11 '11 at 11:56
see stackoverflow.com/q/4550294/11343 – CharlesB Jul 11 '11 at 11:58
feedback

2 Answers

up vote 5 down vote accepted

You can use a .def file. It will let you export the functions without the decorations.

Read: Exporting from a DLL Using DEF Files

link|improve this answer
This seems to do what I want and I guess is what other dll's do rather than using __declspec. Would be nice if it could be done with __declspec, but since I'm having to maintain a list for the auto-importing later having one in a .def is not that much extra work. – SyncViews Jul 11 '11 at 12:23
feedback

You must not use __stdcall. Use __cdecl instead.
Have a look here. If you c linkage the name mangling is removed.

link|improve this answer
1  
"which will be used from another language (...) using the _stdcall calling convetion." (sic) stdcall and cdecl differ by more than name mangling. Namely, cdecl is caller-cleanup, while stdcall is callee-cleanup. Mixing the two definitely won't work. – R. Martinho Fernandes Jul 11 '11 at 11:49
1  
@Martinho: So what. As long as the other language also uses c calling convention everything is fine. There is simply no way to tell the linker to not do name mangling in your sources except of the __cdecl. Otherwise you are stuck with the DEF files. And I bet that __cdecl is exactly what he wants. – mkaes Jul 11 '11 at 12:02
1  
I'll quote from the question again: "which will be used from another language (...) using the _stdcall calling convetion." (sic). The other language will use stdcall, not cdecl. – R. Martinho Fernandes Jul 11 '11 at 12:04
1  
I will also quote from the question: "The problem is that VC++ seems to always do some name decoration on its exported symbols". Yes of course. __stdcall means it must be mangled. At least on windows according to the msdn. – mkaes Jul 11 '11 at 12:10
3  
So, all the windows API's (for example) which uses __stdcall (WINAPI is defined as __stdcall) and have undecorated names are wrong? – SyncViews Jul 11 '11 at 12:14
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.