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>
This commit is contained in:
parent
93b07c091b
commit
00824a94f0
|
@ -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;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
|
|
Loading…
Reference in New Issue