如何以编程方式确定Windows可执行文件DLL依赖关系? [英] How to determine a windows executables DLL dependencies programatically?

查看:121
本文介绍了如何以编程方式确定Windows可执行文件DLL依赖关系?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何确定哪个DLL的二进制文件依赖于使用编程方法?要清楚,我不是要确定运行的exec的DLL依赖关系,而是任何exec(可能缺少一个必需的DLL)的依赖关系。我正在寻找一个在C / C ++应用程序中实现的解决方案。这是我的应用程序在运行时需要完成的,不能由第三方应用程序完成(如依赖)。

解决方案

查看 IMAGE_LOAD_FUNCTION API。它将返回一个指向 LOADED_IMAGE的指针 结构,您可以使用它来访问PE文件的各个部分。



您可以找到一些描述结构如何布局的文章 here here <一>。您可以下载文章的源代码 here



我认为这应该给你所需要的一切。



更新: / p>

我刚刚下载了文章的源代码。如果您打开 EXEDUMP.CPP 并查看 DumpImportsSection ,它应该具有您需要的代码。


How to determine what DLL's a binary depends on using programmatic methods?

To be clear, I am not trying to determine the DLL dependencies of the running exec, but of any arbitrary exec (that may be missing a required DLL). I'm looking for a solution to implement in a C/C++ application. This is something that needs to be done by my application at runtime and can't be done by a third party app (like depends).

解决方案

Take a look at the IMAGE_LOAD_FUNCTION API. It will return a pointer to a LOADED_IMAGE structure, which you can use to access the various sections of a PE file.

You can find some articles that describe how the structures are laid out here, and here. You can download the source code for the articles here.

I think this should give you everything you need.

Update:

I just downloaded the source code for the article. If you open up EXEDUMP.CPP and take a look at DumpImportsSection it should have the code you need.

这篇关于如何以编程方式确定Windows可执行文件DLL依赖关系?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆