怎么使用TimeGetSystemTime
发布网友
发布时间:2022-04-22 23:42
我来回答
共1个回答
热心网友
时间:2023-10-08 21:41
timeGetSystemTime 函数 timeGetSystemTime
函数返回系统时间,(毫秒)。这里的系统时间是指自从系统启动时到调用该函数时的时间间隔。
函数原型:
MMRESULT timeGetSystemTime(
LPMMTIME pmmt,
UINT cbmmt
);
参数pmmt[in] 指向一个 MMTIME 结构的指针 cbmmt[in] MMTIME 结构的大小(字节)返回值
返回 TIMERR_NOERROR.
系统时间返回在MMTIME结构的ms成员里。
备注
该函数的操作方式与 timeGetTime 函数相同.该函数就是再timeGetTime上面封装了已成,其还是调用timeGetTime实现的。
要求
OS Versions: Windows CE .NET 4.2 and later.
Header: Mmsystem.h.
Link Library: Mmtimer.lib.追问这些我知道,请给出源码。谢谢!
参考资料:http://ke.baidu.com/view/5221439.htm