GetSystemTimeAsFileTime上网找了一下 关于这个函数比较少  这个函数是做什么用的 参数返回值麻烦也说下 谢谢了

解决方案 »

  1.   

    Retrieves the current system date and time. The information is in Coordinated Universal Time (UTC) format.
      

  2.   

    lpSystemTimeAsFileTime [out] 
    A pointer to a FILETIME structure to receive the current system date and time in UTC format.等于两个GetSystemTime,SystemTimeToFileTime
    获得当前系统时间,然后转换成FILETIME格式,返回的就是一个FILETIME的指针...指向的数据就是一个INT64的FILETIME数
      

  3.   

    就是获取系统当前时间(UTC),以FILETIME的形式返回。
      

  4.   

    单位是100ns,也就是0.0001ms,不过实际精度没有那么高。