Created basic C++ DLL and exported names using Module Definition file (MyDLL.def). After compilation I check the exported function names using dumpbin.exe I expect to see:

SomeFunction

but I see this instead:

SomeFunction = SomeFunction@@@23mangledstuff#@@@@

Why?

The exported function appears undecorated (especially compared to not using the Module Def file), but what's up with the other stuff?

If I use dumpbin.exe against a DLL from any commercial application, you get the clean: SomeFunction and nothing else......

UPDATE: I also tried removing the Module Definition and exporting the names using the "C" style of export, namely:

extern "C" void __declspec(dllexport) SomeFunction();

(Simply using "extern "C" did not create an exported function btw)

However, this still creates the same output, namely:

SomeFunction = SomeFunction@@@23mangledstuff#@@@@

UPDATE2: (Can't use Comment option on this website for some reason) I also tried the #define dllexport __declspec(dllexport) option and created a LIB with no problem. However, I don't want to have to provide a LIB file to people using the DLL in their C# application.

UPDATE3: RE: "Making sure I build the DLL correctly". Umm, that's why I'm asking the question. It's a plain vanilla C++ DLL (unmanaged code), compiled with C++ nothing but a simple header and code. Without Module Def I get mangled exported functions (I can create a static library and use the LIB no problem. I'm trying to avoid that). If I use extern "C" __declspec(dllexport) OR a Module Definition I get what appears to be an undecorated function name......the ony problem is that it is followed by an "=" and what looks like a decorated version of the function. I want to get rid of the stuff after the "=" - or at least understand why it is there.

As it stands, I'm pretty certain that I can call the function from C# using a P/Invoke.....I just want to avoid that junk at the end of the "=".

I'm open to suggestions on how to change the project/compiler settings, but I just used the standard Visual Studio DLL template - nothing special.

link|improve this question
The entire point of extern "C" is to undecorate c++ functions. If it isn't working you need to make sure you're building your DLL correctly. – Ron Warholic May 10 '10 at 18:39
Hans provided the correct answer below....... – Bob May 10 '10 at 19:57
feedback

7 Answers

up vote 5 down vote accepted

You can get what you want by turning off debug info generation. Project + Properties, Linker, Debugging, Generate Debug Info = No.

Naturally, you only want to do this for the Release build. Where the option is already set that way.

link|improve this answer
THANK YOU! THANK YOU! THANK YOU! It's funny because I was just reading some other answers you wrote on here........ You know, I spent way to much time researching this. I had people repeatedly telling me to use a Module Definition file, others would say "No" it has to be the "extern C"".....I even had people telling me to use 3 different options together. All this despite the fact that my module definition was ok. I just couldn't find someone to explain why there was extra "mangled" text shown by dumpbin. The remaining 10 hairs on my head solute you and live another day. – Bob May 10 '10 at 19:54
Sadly, it doesn't do the trick in VC2010. – Janusz Lenar Sep 8 '11 at 16:46
Delete the .pdb file by hand so that Dumpbin.exe cannot find it. – Hans Passant Feb 17 at 10:16
feedback

You have to declare the functions as extern "C" if you don't want their names to be mangled.

link|improve this answer
feedback

Sorry for replying to an old thread, but what has been marked as the answer did not work for me.

As a number of people have pointed out, the extern "C" decoration is important. Changing the "Project / Properties / Linker / Debugging / Generate debug info" setting made absolutely no difference to the mangled names being generated for me in either Debug or Release build mode.

Setup: VS2005 compiling a Visual C++ Class Library project. I was checking the compiled .dll output with Microsoft's Dependency Walker tool.

Here is an example recipe that worked for me...

In project.h:

#define DllExport extern "C" __declspec( dllexport )

DllExport bool API_Init();
DllExport bool API_Shutdown();

In project.cpp:

#include "project.h"

bool API_Init()
{
  return true;
}

bool API_Shutdown()
{
  return true;
}

Then being called from C# managed code, class.cs:

using System.Runtime.Interopservices;
namespace Foo
{
    public class Project
    {
        [DllImport("project.dll")]
        public static extern bool API_Init();

        [DllImport("project.dll")]
        public static extern bool API_Shutdown();
    }
}

Doing the above prevented the mangled names in both Debug and Release mode, regardless of the Generate debug info setting. Good luck.

link|improve this answer
I actually had a similar problem but even worst, I was having decorated functions exported from a C source file (not C++). It turned out, as you wrote, that if I pre-declare the method within my C file, then I get rid of those decorations. When I did not pre-declare the method in the C source file and try to add __declspec( dllexport ) directly in the function definition/declaration I did get that decoration. – Philibert Perusse Mar 8 at 21:30
Finally not, my problem came from the use of both __declspec(dllexport) and __stdcall in the C function declaration. It turned out that using __stdcall got the function void myfunction(void) decorated as follows _myfunction@0 while not using __stdcall had it now exported as myfunction without any decoration! – Philibert Perusse Mar 8 at 21:34
feedback

Instead of using .def file just insert pragma comment like this

#pragma comment(linker, "/EXPORT:SomeFunction=_SomeFunction@@@23mangledstuff#@@@@")
link|improve this answer
feedback

the SomeFunction@@@23mangledstuff#@@@@ is mangled to give the types and class of the C++ function. The simple exports are functions that are callable from C i.e. are written in C or else are declared extern "C' in C++ code. If is you want a simple interface you have to make the functions you export be use just C types and make them non member functions in the global namespace.

link|improve this answer
feedback

Basically, when you use functions in C++, parts of their names now include their signature and suchlike, in order to facilitate language features like overloading.

If you write a DLL using __declspec(dllexport), then it should also produce a lib. Link to that lib, and you will automatically be linked and the functions registered by the CRT at start-up time (if you remembered to change all your imports to exports). You don't need to know about name mangling if you use this system.

link|improve this answer
feedback

From experience, be careful if you use __stdcall in your function signature. With __stdcall, the name will remain mangled to some extent (you will find out quickly enough). Apparently there are two levels of mangling, one the extern "C" deals with at the c++ level but it does not deal with another level of name mangling caused by __stdcall. The extra mangling is apparently relevant to overloading -- but I am not certain of that.

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.