Windows API timeGetTime Intro

The timeGetTime function retrieves the system time, in milliseconds. The system time is the time elapsed since Windows was started.

equivalent to in linux
int clock_gettime(clockid_t clk_id, struct timespec *tp);
with clk_id = CLOCK_MONOTONIC

你可能感兴趣的:(windows)