mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-22 18:23:17 +02:00
14 lines
267 B
C++
14 lines
267 B
C++
#ifdef _WIN32
|
|
#include <windows.h>
|
|
#define _timeval_
|
|
#include "Systime.h"
|
|
|
|
int gettimeofday( timeval* p_tv, timezone* p_tz )
|
|
{
|
|
int tt = timeGetTime();
|
|
|
|
p_tv->tv_sec = tt / 1000;
|
|
p_tv->tv_usec = tt % 1000 * 1000;
|
|
return 0;
|
|
}
|
|
#endif
|