msvcrt: Don't use GetDaylightFlag function in _ftime64.

The function is not available on current Windows releases.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51959
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit 00824a94f0)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Piotr Caban 2021-11-01 15:07:17 +01:00 committed by Michael Stefaniuc
parent d1833f8ea6
commit 4c16e0f20b
1 changed files with 2 additions and 3 deletions

View File

@ -44,8 +44,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
#undef _time32
#undef _wctime32
BOOL WINAPI GetDaylightFlag(void);
static LONGLONG init_time;
void msvcrt_init_clock(void)
@ -691,6 +689,7 @@ double CDECL _difftime32(__time32_t time1, __time32_t time2)
*/
void CDECL _ftime64(struct __timeb64 *buf)
{
TIME_ZONE_INFORMATION tzinfo;
FILETIME ft;
ULONGLONG time;
@ -703,7 +702,7 @@ void CDECL _ftime64(struct __timeb64 *buf)
buf->time = time / TICKSPERSEC - SECS_1601_TO_1970;
buf->millitm = (time % TICKSPERSEC) / TICKSPERMSEC;
buf->timezone = MSVCRT___timezone / 60;
buf->dstflag = GetDaylightFlag();
buf->dstflag = GetTimeZoneInformation( &tzinfo) == TIME_ZONE_ID_DAYLIGHT;
}
/*********************************************************************