Just read two good articles on this topic:this
http://stackoverflow.com/questions/1001404/check-if-unmanaged-dll-is-32-bit-or-64-bitget
To recap:it
For native dlls, we can use:io
dumpbin /headers cv210.dllfile
For .NET dlls, we can use:call
corflags "C:\Windows\Microsoft.NET\Framework\v2.0.50727\System.Data.dll"stackoverflow
You're looking at PE and 32BIT specifically.top
Any CPU:co
PE: PE32
32BIT: 0
x86:
PE: PE32
32BIT: 1
x64:
PE: PE32+32BIT: 0