Is it safe to assume that the count returned from QueryPerformanceCounter relates to the time since the last system boot? Or could it be reset while the system is running? The MSDN article itself doesn't guarantee this, however I've seen some 3rd party information (such as this) that says that this is the case.
|
feedback
|
|
It's meant to be used for relative times. But I don't think it can be used to measure time since boot. From what I hear, it's implemented using the | |||||||||
feedback
|
QueryPerformanceCountergiving you "time since boot." As the response said, it's for relative times. You can't say with any reliability what the base time is. – Jim Mischel Sep 15 '11 at 16:55