1

lets say I have an import library (.lib file) and I want to find out the dll name that this import library contains. from this question I know its possible to get it via dumpbin :

When building a DLL file, does the generated LIB file contain the DLL name?

but is there any way to programatically retrieve the dll name from the lib (without invoking dumpbin)?

max
  • 93
  • 5
  • Find an open source COFF library, or an open source dumpbin equivalent and read the code. – David Heffernan Oct 15 '18 at 17:53
  • Or OMF, as not all compilers use COFF on Windows. – Remy Lebeau Oct 15 '18 at 19:01
  • the import library have no any single dll name. this is per linker member (symbol). so possible have many different dll names in single import library, despite i never view this in real libs – RbMm Oct 15 '18 at 19:13

0 Answers0