码迷,mamicode.com
首页 > Windows程序 > 详细

windows timeGetTime() 函数 获取系统从开机到现在的毫秒时间值

时间:2015-05-08 23:43:47      阅读:254      评论:0      收藏:0      [点我收藏+]

标签:

 

 1 #include <windows.h>
 2 #include <iostream>
 3 
 4 #pragma comment( lib,"winmm.lib" )
 5 
 6 int main()
 7 {
 8     DWORD msec = timeGetTime();
 9     std::cout << "msec = " << msec << std::endl;
10 
11     return 0;
12 }

 

windows timeGetTime() 函数 获取系统从开机到现在的毫秒时间值

标签:

原文地址:http://www.cnblogs.com/suyunhong/p/4489070.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!