비주얼 스튜디오에서 제공하는 dumpbin을 사용해 확인할 수 있다.


VS용 개발자 명령 프롬프트를 실행하고,


> dumpbin some.dll /HEADERS


를 통해 알 수 있다.




출력 예 - 32bit)


FILE HEADER VALUES

             14C machine (x86)

              14 number of sections

        53D86692 time date stamp Wed Jul 30 12:29:22 2014

            7000 file pointer to symbol table

             25F number of symbols

              E0 size of optional header

            2106 characteristics

                   Executable

                   Line numbers stripped

                   32 bit word machine

                   DLL




출력 예 - 64bit)


FILE HEADER VALUES

            8664 machine (x64)

              13 number of sections

        53D8638A time date stamp Wed Jul 30 12:16:26 2014

           36600 file pointer to symbol table

             613 number of symbols

              F0 size of optional header

            2026 characteristics

                   Executable

                   Line numbers stripped

                   Application can handle large (>2GB) addresses

                   DLL









Posted by huammmm1
,