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

 

 1 #include 
 2 #include 
 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 }

 

转载于:https://www.cnblogs.com/suyunhong/p/4489070.html

你可能感兴趣的:(python)