博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Check a dll is x64 or x86
阅读量:4668 次
发布时间:2019-06-09

本文共 380 字,大约阅读时间需要 1 分钟。

Just read two good articles on this topic:

 

To recap:

For native dlls, we can use:

dumpbin /headers cv210.dll

For .NET dlls, we can use:

corflags "C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll"

 

You're looking at PE and 32BIT specifically.

    • Any CPU:

      PE: PE32

      32BIT: 0

    • x86:

      PE: PE32

      32BIT: 1

    • x64:

      PE: PE32+

      32BIT: 0

转载于:https://www.cnblogs.com/feishunji/p/3820240.html

你可能感兴趣的文章
2013吉林通化邀请赛 1004 D-City 并查集求连通分支数
查看>>
Meta http-equiv属性详解
查看>>
python字符串,列表常用操作
查看>>
阅读笔记06
查看>>
《http权威指南》读书笔记14
查看>>
2019 COMPSYS 302 Class Protocol V6
查看>>
win7主机与linux虚拟机共享方法之右键添加Sharing Options
查看>>
网友写的验证码生成方案,可防止绝大多数机械识别。
查看>>
8 个最好的 jQuery 树形 Tree 插件
查看>>
软件质量与测试 黑盒测试
查看>>
Salesforce.com + AutoCAD WS集成研究集锦
查看>>
Office 2007在安装过程中出错
查看>>
浅析Hibernate映射(五)——集合映射
查看>>
java.lang.ClassNotFoundException: com.sun.xml.ws.spi.ProviderImpl解决办法
查看>>
检测到在集成的托管管道模式下不适用的ASP.NET设置的解决方法(非简单设置为【经典】模式)。 - CatcherX...
查看>>
Bitmap处理
查看>>
C语言记录汇总
查看>>
webservices系列(三)——调用线上webservice(天气预报和号码查询)
查看>>
callback 模式
查看>>
什么是servlet
查看>>