janeyjhon 发表于 2017-7-13 13:49:41

c或c++里面有DWORD变量类型吗?

c或c++里面有DWORD变量类型吗?

人造人 发表于 2017-7-13 14:05:40

在我的环境中 unsigned long 就是DWORD
typedef unsigned long       DWORD;

#include <stdio.h>
#include <windows.h>

int main(void)
{
        printf("%d\n", sizeof(DWORD));
        printf("%d\n", sizeof(unsigned long));

        return 0;
}

4
4
请按任意键继续. . .

ba21 发表于 2017-7-13 14:06:18

本帖最后由 ba21 于 2017-7-13 14:09 编辑

同意楼上,要加头文件windows.h才有。
页: [1]
查看完整版本: c或c++里面有DWORD变量类型吗?