.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的加载项.

相关文章

Windows2012R2备用域控搭建 前置操作 域控主域控的主dns:自...
主域控角色迁移和夺取(转载) 转载自:http://yupeizhi.blo...
Windows2012R2 NTP时间同步 Windows2012R2里没有了internet时...
Windows注册表操作基础代码 Windows下对注册表进行操作使用的...
黑客常用WinAPI函数整理之前的博客写了很多关于Windows编程的...
一个简单的Windows Socket可复用框架说起网络编程,无非是建...