标签:
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