When I run lib /list mylib.lib
I see some contained .obj files, but no information about the functions similar to this:
Path\file1.obj
Path\file2.obj
Path\file3.obj
If I open the .lib file as an archieve I can see that there are a number of files 1.txt, ..., n.txt
in addition to the object files. Those txt files seem to contain information about the functions in the .obj files on the format:
:
Path\file1.obj ?function_name@...
:
Thus some info can be retrieved that way.
But isn't there a better way to get the function info ? For example using lib.exe
, dumpbin.exe
or another tool ? Also in a more readable/demangled format ? So far I had no luck finding that.
There is a related question here but it does not discuss what to do with object files contained in a .lib file.