I created a dll project in Visual Studio 2013
After compiling, I run
dumpbin /symbols DLLTest.dll
via cmd.exe in the directory where the dll is located, but I only get the summary
I ran
dumpbin /all DLLTest.dll
(with the text output option) but I could not find the decorated function name in the output (I searched for int
and getSomeNum
that should be part of the decorated name in the output dump).
I also tried to find a way in VS2013 to enter /FAs into the compiler options, but I was unable to find the compiler options in the C/C++ property pages of the project.
I would appreciate any help to identify the decorated function names.
EDIT: Thanks for the pointer, Jester. I have modified the original code
However, after recompilation bumpbin is still not showing any decorated name (with the /symbols option).