ff                 62 win32/time.c   	unsigned __int64 ff = 0;
ff                 74 win32/time.c   	ff = fft.QuadPart;
ff                 76 win32/time.c   	ff /= 10Ui64; /* convert to microseconds */
ff                 77 win32/time.c   	ff -= 11644473600000000Ui64; /* convert to unix epoch */
ff                 79 win32/time.c   	tv->tv_sec = (long)(ff / 1000000Ui64);
ff                 80 win32/time.c   	tv->tv_usec = (long)(ff % 1000000Ui64);