Windows 8 Consumer Preview中的GetTickCount()在哪里?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows 8 Consumer Preview中的GetTickCount()在哪里?相关的知识,希望对你有一定的参考价值。
我最近将一个非常琐碎的应用程序从Windows 8 Developer Preview移植到Windows 8 Consumer Preview。除了now函数GetTickCount()
似乎不再在Windows.h或WinBase.h中定义之外,一切似乎都正常工作。
尽管我在文件顶部定义了这些标题:
GetTickCount()
我的代码行
#include <Windows.h>
#include <WinBase.h>
仍然给我错误:
unsigned int seed = GetTickCount() % UINT_MAX;
[谁能告诉我error C3861: 'GetTickCount': identifier not found
到哪里去了,或者我应该用什么代替?
答案
从GetTickCount()
:
仅适用于:桌面应用程序
适用于:桌面应用| Metro风格的应用]
因此,请使用GetTickCount
。
以上是关于Windows 8 Consumer Preview中的GetTickCount()在哪里?的主要内容,如果未能解决你的问题,请参考以下文章
Windows 10 系统 - business editions 和 consumer editions 的区别
Java 8 - Predicate和Consumer接口函数式编程