40 lines
764 B
C
40 lines
764 B
C
|
|
||
|
#define WIN32_LEAN_AND_MEAN
|
||
|
#include <windows.h>
|
||
|
#include <time.h>
|
||
|
|
||
|
#include "gettimeofday.h"
|
||
|
|
||
|
int gettimeofday(struct timeval *tv, struct timezone *tz)
|
||
|
{
|
||
|
FILETIME ft;
|
||
|
LARGE_INTEGER li;
|
||
|
__int64 t;
|
||
|
static int tzflag;
|
||
|
|
||
|
if(tv)
|
||
|
{
|
||
|
GetSystemTimeAsFileTime(&ft);
|
||
|
li.LowPart = ft.dwLowDateTime;
|
||
|
li.HighPart = ft.dwHighDateTime;
|
||
|
t = li.QuadPart;
|
||
|
t -= EPOCHFILETIME;
|
||
|
t /= 10;
|
||
|
tv->tv_sec = (long)(t / 1000000);
|
||
|
tv->tv_usec = (long)(t % 1000000);
|
||
|
}
|
||
|
|
||
|
if (tz)
|
||
|
{
|
||
|
if (!tzflag)
|
||
|
{
|
||
|
_tzset();
|
||
|
tzflag++;
|
||
|
}
|
||
|
tz->tz_minuteswest = _timezone / 60;
|
||
|
tz->tz_dsttime = _daylight;
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|