微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

.net – 我想知道Win32.DLL中可用的功能

我有一个DLL文件,它有一些我想在我的应用程序中调用的有用函数.不幸的是,我再也没有相关的文档了.

有什么方法可以发现DLL导出的函数及其方法签名是什么?

也许有一个实用程序列出了函数及其参数.

知道吗?

Windows SDK用于包含可用于探索DLL内容的依赖性walker GUI实用程序:

Dependency Walker is a free utility that scans any 32-bit or 64-bit Windows module (exe,dll,ocx,sys,etc.) and builds a hierarchical tree diagram of all dependent modules. For each module found,it lists all the functions that are exported by that module,and which of those functions are actually being called by other modules. Another view displays the minimum set of required files,along with detailed information about each file including a full path to the file,base address,version numbers,machine type,debug information,and more.

如今,it can be found here.

有关方法签名详细信息和创建互连.NET代码,请在pinvoke site中查找您的DLL.您还可以尝试其Visual Studio 2003和2005的加载项.

原文地址:https://www.jb51.cc/windows/363257.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐