How large is a DWORD with 32- and 64-bit code?

后端 未结 3 1131
终归单人心
终归单人心 2020-12-01 02:53

In Visual C++ a DWORD is just an unsigned long that is machine, platform, and SDK dependent. However, since DWORD is a double word (that is 2 * 16), is a DWORD still 32-bit

3条回答
  •  醉梦人生
    2020-12-01 03:31

    No ... on all Windows platforms DWORD is 32 bits. LONGLONG or LONG64 is used for 64 bit types.

提交回复
热议问题