09-23-2008 11:47 PM
09-24-2008 12:24 AM
It just counts ms.
I don't understand what your question is. What are you trying to do ?
Of course it depends from the system clock. Windows have resolution of 1 ms, that is why it has the same resolution
09-24-2008 05:21 AM
The millisecond timer (tick count) returns a number that has no relation to the actual absolute time of your PC. It can be used to time events, to (approximately) millisecond precision.
If you call the function once, it will return a number like 24516526
if you call it again 300 milliseconds later it will return 24516823 (or there abouts, it could differ by a few milliseconds as Windows is not a deterministic real-time OS).
09-24-2008 07:37 AM
I think the counter is reset as Windows boots up.
Ton