I wrote a .dll library with many functions and classes in visual studio 2010. When I view the contents of a file with:
dumpbin.exe /EXPORTS myDll.dll
I get long function names with some kind of function location pointer that looks like this (second entry in .dll):
2 1 0001100A ?Initialize@codec @ codecX@ @ SANNN@Z = @ILT+5( ?Initialize@codec @ codecX@ @ SANNN@Z )
It is somehow difficult to read, but I saw a "more convenient" list of procedures / functions from other .dll-s, for example:
141 8C 00002A08 PogoDbWriteValueProbeInfo
How can I make this .dll list this way?
PS: the source code of my dll is as follows:
namespace codecX { class codec { public: static __declspec(dllexport) double Initialize(double a, double b); ...
Tomil source share