Windows查看zipfldr.dll动态库中的段函数
前言全局说明
dll 是 Win 中的动态库,开发时想要调用其中的段函数,就要指定,
但怎么知道dll中有哪些段函数呢? 就需要用工具查看了。
一、说明
环境:
Windows 7 旗舰版
Visual Studio 2013
二、dumpbin使用
查看.obj、.lib、.dll、.exe文件头、段函数
https://www.cnblogs.com/wutou/p/18551225
三、zipfldr.dll 系统目录下路径
32位系统:"C:\WINNT\System32\zipfldr.dll"
64位系统: "C:\Windows\SysWOW64\zipfldr.dll"
四、zipfldr.dll 段信息
4.1
cd D:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\bin
dumpbin.exe /EXPORTS C:\Windows\SysWOW64\zipfldr.dll
4.2
文件名:
免责声明:本号所涉及内容仅供安全研究与教学使用,如出现其他风险,后果自负。
参考、来源:
https://www.cnblogs.com/wutou/p/18551225