将两个时间间隔以毫秒的形式来表示

下面是MSDN的提示:  
  Remarks  
  It   is   not   recommended   that   you   add   and   subtract   values   from   the   SYSTEMTIME   structure   to   obtain   relative   times.   Instead,   you   should    
   
  1、Convert   the   SYSTEMTIME   structure   to   a   FILETIME   structure.    
  2、Copy   the   resulting   FILETIME   structure   to   a   LARGE_INTEGER   structure.    
  3、Use   normal   64-bit   arithmetic   on   the   LARGE_INTEGER   value.    
   
  所以可以这样做:  
  FILETIME   ftStart,   ftEnd;  
  SystemTimeToFileTime(&m_stStart,   &ftStart);  
  SystemTimeToFileTime(&m_stEnd,   &ftEnd);  
   
  LARGE_INTEGER   liStart,   liEnd;  
  liStart.HighPart   =   ftStart.dwHighDateTime;  
  liStart.LowPart   =   ftStart.dwLowDateTime;  
  liEnd.HighPart   =   ftEnd.dwHighDateTime;  
  liEnd.LowPart   =   ftEnd.dwLowDateTime;  
   
  __int64   llUsedTime   =   (liEnd.QuadPart   -   liStart.QuadPart)/10000;   //you   want   time
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值