If I have a Windows executable, how can I find out which dlls it will load?
I'm just talking about which ones that will be loaded statically, not ones it might load dynamically with something like LoadLibrary.
|
|
If I have a Windows executable, how can I find out which dlls it will load? I'm just talking about which ones that will be loaded statically, not ones it might load dynamically with something like LoadLibrary.
|
||
|
|
|
|
There are utilities that will do this for you. In the past I've used the MS tool (depends.exe) that came with (I think) VB.: and there's this as well: and probably others as well. |
|||
|
|
|
|
dumpbin is a tool that comes with VC++. To see what functions (and DLLs) it will import, use
|
||||
|
|
|
Dependency Walker can help you determine which .dll will be loaded. |
|||
|
|
|
|
There is a handy tool called NDepend that will give you all DLL dependencies. |
||
|
|
|
|
progfr is simple and useful: [http://members.fortunecity.com/michaelmoser/tip11.htm] |
||
|
|