2

Possible Duplicate:
How can I test a windows dll to determine if it is 32bit or 64bit?

I'm in win32 c++ code. I have the path to a DLL on disk and I want to know whether it is 64-bit or 32-bit. Is there a way to do this? I can't seem to find any reference on functions that let you peek inside DLLs.

Thanks, Phil

Community
  • 1
  • 1
philq
  • 270
  • 2
  • 8
  • 4
    http://stackoverflow.com/questions/495244/how-can-i-test-a-windows-dll-to-determine-if-it-is-32bit-or-64bit – Bart Apr 29 '11 at 20:14

1 Answers1

0

If this dll is in one of the known folders: MSDN, you could decide it easily.

+1 for your first comment.

Naszta
  • 7,560
  • 2
  • 33
  • 49