extern "C"
{
__declspec(dllexport) LRESULT CALLBACK MTest
}

Using depends , I found there is still name mangling even using extern "C".

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

The only way to get truly undecorated names with __declspec(dllexport) is to export them with the __cdecl calling convention. CALLBACK becomes __stdcall, which decorates the "C" form of the name with a leading _ and trailing @bytes.

Otherwise you can use a .DEF file, which is a pain. Another MSVC specific way is to embed a /EXPORT directive into the object file (or pass it as a explicit linker setting)

#pragma comment(linker, "/EXPORT:ExportSymbol=DecoratedName");

For some reason the = part of the directive is not listed in the help

link|improve this answer
Why is a DEF file a pain? – David Heffernan Mar 27 '11 at 10:54
I thought that would be self evident. The best reason to dislike them is they are a hard to find point of failure. – Chris Becke Mar 27 '11 at 11:37
I generate mine as part of a build script, but I take your point. – David Heffernan Mar 27 '11 at 12:14
feedback

That's name decoration rather than mangling. You should declare the undecorated name in a DEF file and then you'll get the behaviour you are seeking.

link|improve this answer
david, is DEF file a must? – user496949 Mar 27 '11 at 10:10
@user I believe so. – David Heffernan Mar 27 '11 at 10:11
@user Actually Chris Becke points out that you can use a #pragma, or cdecl. Personally I don't see any problems with a DEF file but I guess everyone has their own preferred way to do things. – David Heffernan Mar 27 '11 at 10:55
feedback

Not being much of a visual C++ programmer the first thought that occurs to me is ... "do any of those macros LRESULT or CALLBACK introduce the standard calling convention?" Do the mangled names have @NUMBER_OF_BYTES_OF_PARAMATER_LIST or characters depicting the actual types appended to them?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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