I want to write a c++ program which lists down the dependencies of a given DLL file.
Exactly like the dumpbin \DEPENDENTS <file name>
command does.
I want to write a c++ program which lists down the dependencies of a given DLL file.
Exactly like the dumpbin \DEPENDENTS <file name>
command does.
Have a look at Matt Pietrek's PeDump sample. He shows how that works
Use Microsoft's PE specification to known how .exe and .dll files are structured. Check also this:
http://alcides-mp.com/2012/03/exports-control/