mirror of
https://github.com/videolan/vlc.git
synced 2024-12-14 04:04:45 +08:00
f395afc090
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
55 lines
1.9 KiB
C
55 lines
1.9 KiB
C
/*****************************************************************************
|
|
* gettimeofday.c: gettimeofday() replacement
|
|
*****************************************************************************
|
|
* Copyright © 2014 VLC authors and VideoLAN
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU Lesser General Public License as published by
|
|
* the Free Software Foundation; either version 2.1 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with this program; if not, write to the Free Software Foundation,
|
|
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
|
|
*****************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include <config.h>
|
|
#endif
|
|
|
|
#ifdef _WIN32
|
|
#include <winsock2.h>
|
|
|
|
/* FILETIME of Jan 1 1970 00:00:00. */
|
|
static const unsigned __int64 epoch = 116444736000000000;
|
|
|
|
/*
|
|
* timezone information is stored outside the kernel so tzp isn't used anymore.
|
|
*
|
|
* Note: this function is not for Win32 high precision timing purpose. See
|
|
* elapsed_time().
|
|
*/
|
|
int gettimeofday(struct timeval * tp, struct timezone * tzp)
|
|
{
|
|
(void)tzp;
|
|
FILETIME file_time;
|
|
SYSTEMTIME system_time;
|
|
ULARGE_INTEGER ularge;
|
|
|
|
GetSystemTime(&system_time);
|
|
SystemTimeToFileTime(&system_time, &file_time);
|
|
ularge.LowPart = file_time.dwLowDateTime;
|
|
ularge.HighPart = file_time.dwHighDateTime;
|
|
|
|
tp->tv_sec = (long) ((ularge.QuadPart - epoch) / 10000000L);
|
|
tp->tv_usec = (long) (system_time.wMilliseconds * 1000);
|
|
|
|
return 0;
|
|
}
|
|
#endif /* _WIN32 */
|