Top "Name-decoration" questions

Exporting functions from a DLL with dllexport

I'd like a simple example of exporting a function from a C++ Windows DLL. I'd like to see the header, …

winapi visual-c++ dll name-decoration
C++ DLL Export: Decorated/Mangled names

Created basic C++ DLL and exported names using Module Definition file (MyDLL.def). After compilation I check the exported function …

c++ dll export name-decoration
C++ name mangling decoder for g++?

is there any C++ name-mangling decoder for g++?

c++ name-mangling name-decoration
C4503 warnings? How do i solve/get rid of them?

It's my first time trying out C++ STL. I'm trying to build a multidimensional associative array using map. For example: …

c++ string stl map name-decoration
mingw32 g++ and stdcall @suffix

I declared some C++ functions prototyped as follows: extern "C" void __stdcall function(); I also have some third-party dll with …

c++ linker mingw name-decoration stdcall
Why can't I use __declspec(dllexport) to export DllGetClassObject() from a COM DLL?

I am developing a COM dll and trying to export the DllGetClassObject() method with the __declspec(dllexport). Here is my …

c++ com name-decoration