关于VC6.0中 Depends、dumpbin.exe使用方法

  1. Depends 位于 开机菜单–>VC -->VC6.0.exe下面的文件夹中,用来查看dll的导出函数名称的。
    open->打开对应的dll即可
  2. dumpbin.exe 二进制转换文件,只能在 cmd中运行,目前只是用它来看DLL文件导出函数信息。
    【方法】运行cmd,将VC6.0 安装目录下的C:\Program Files\Microsoft Visual Studio\VC98\Bin\dumpbin.exe拖拽至cmd中运行,然后输入
    dumpbin /exports 然后将dll文件 拖拽在 /exports后面即可看信息啦。
    【可以写 /exports 也可以写成 -exports】
    文件编码:00000000 characteristics
    文件创建时间:4B559249 time date stamp Tue Jan 19 19:06:49 2010
    版本:0.00 version
    对外提供的函数数量:12 number of functions
    函数名数量:12 number of names
    ordinal: 序号
    hint: 十六进制序号
    RVA: 程序入口地址
    name: 函数名

dumpbin.exe参考:
https://blog.csdn.net/u010411264/article/details/50561241

猜你喜欢

转载自blog.csdn.net/u012719076/article/details/83387902