我最近将一个非常简单的应用程序从 Windows 8 Developer Preview 移植到了 Windows 8 Consumer Preview。除了 现在 函数 GetTickCount()
似乎不再在 Windows.h 或 WinBase.h 中定义之外,一切似乎都工作正常。
尽管我在文件顶部定义了这些标题:
#include <Windows.h>
#include <WinBase.h>
我的代码行
unsigned int seed = GetTickCount() % UINT_MAX;
仍然给我错误:
error C3861: 'GetTickCount': identifier not found
谁能告诉我
GetTickCount()
去哪里了或者我应该用什么来代替? 最佳答案
从 GetTickCount
docs :
从 GetTickCount64
docs :
所以,使用 GetTickCount64
。
关于c++ - Windows 8 Consumer Preview 中的 GetTickCount() 在哪里?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10442191/