Get dependent Dll list
-
Hi, I am writing an utility dll like dependency walker. I have no idea how to get dependent dll. Any idea about this. Thanks
-
Hi, I am writing an utility dll like dependency walker. I have no idea how to get dependent dll. Any idea about this. Thanks
manish rastogi wrote:
I am writing an utility dll like dependency walker. I have no idea how to get dependent dll.
It looks like a good kick off! :-D
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke
[My articles] -
Hi, I am writing an utility dll like dependency walker. I have no idea how to get dependent dll. Any idea about this. Thanks
Have a look at Process Viewer[^]. It contains almost everything you want. Regards, Jijo.
_____________________________________________________ http://weseetips.com[^] Visual C++ tips and tricks. Updated daily.
-
Hi, I am writing an utility dll like dependency walker. I have no idea how to get dependent dll. Any idea about this. Thanks
You can find out what DLL's are implicitly linked to the DLL or EXE by reading the PE import table. Thanks & Regards, K. Sushilkumar.