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

前端之家收集整理的这篇文章主要介绍了.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.f2er.com/windows/363257.html

猜你在找的Windows相关文章