I am trying to find a programmatic way to tell if a binary is x86, x64, or ia64.
Platform: Windows. Language: c/c++.
Background: Before trying to load a third-party dll, I need to find out its bitness.
Appreciate any pointers.
feedback
|
For EXEsHere is same question for manged exe. For DLLs (and EXEs)Use the ImageNtHeader(...) to get the PE data of the file and then check the IMAGE_FILE_HEADER.Machine field. Here is some code I found using Google Code Search No Cleanup and NO error checking
| ||||
feedback
|
|
You can check the PE header yourself to read the | |||
|
feedback
|