c++ Programming Glossary: my_dll_api
Is there a way to suppress c++ name mangling? http://stackoverflow.com/questions/902468/is-there-a-way-to-suppress-c-name-mangling The code is Exported header #ifdef MY_DLL_EXPORTS #define MY_DLL_API __declspec dllexport #else #define MY_DLL_API __declspec dllimport.. #define MY_DLL_API __declspec dllexport #else #define MY_DLL_API __declspec dllimport #endif Decorated function export myCppFunction@@YAHF@Z.. #endif Decorated function export myCppFunction@@YAHF@Z MY_DLL_API int myCppFunction short v Undecorated function export myCFunction..
|