c或c++里面有DWORD变量类型吗?
c或c++里面有DWORD变量类型吗? 在我的环境中 unsigned long 就是DWORDtypedef 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:09 编辑
同意楼上,要加头文件windows.h才有。
页:
[1]