Added stubs for GetVolumePathName(A,W).
[wine] / dlls / kernel / time.c
1 /*
2  * Win32 kernel time functions
3  *
4  * Copyright 1995 Martin von Loewis and Cameron Heide
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  */
20
21 #include "config.h"
22
23 #include <string.h>
24 #ifdef HAVE_UNISTD_H
25 # include <unistd.h>
26 #endif
27 #include <stdarg.h>
28 #include <stdlib.h>
29 #include <time.h>
30 #ifdef HAVE_SYS_TIME_H
31 # include <sys/time.h>
32 #endif
33 #ifdef HAVE_SYS_TIMES_H
34 # include <sys/times.h>
35 #endif
36 #ifdef HAVE_MACHINE_LIMITS_H
37 #include <machine/limits.h>
38 #endif
39
40 #define NONAMELESSUNION
41 #define NONAMELESSSTRUCT
42 #include "windef.h"
43 #include "winbase.h"
44 #include "winreg.h"
45 #include "winternl.h"
46 #include "kernel_private.h"
47 #include "wine/unicode.h"
48 #include "wine/debug.h"
49
50 WINE_DEFAULT_DEBUG_CHANNEL(time);
51
52 /* maximum time adjustment in seconds for SetLocalTime and SetSystemTime */
53 #define SETTIME_MAX_ADJUST 120
54 #define CALINFO_MAX_YEAR 2029
55
56 #define LL2FILETIME( ll, pft )\
57     (pft)->dwLowDateTime = (UINT)(ll); \
58     (pft)->dwHighDateTime = (UINT)((ll) >> 32);
59 #define FILETIME2LL( pft, ll) \
60     ll = (((LONGLONG)((pft)->dwHighDateTime))<<32) + (pft)-> dwLowDateTime ;
61
62
63 static const int MonthLengths[2][12] =
64 {
65         { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 },
66         { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }
67 };
68
69 static inline int IsLeapYear(int Year)
70 {
71         return Year % 4 == 0 && (Year % 100 != 0 || Year % 400 == 0) ? 1 : 0;
72 }
73
74 /***********************************************************************
75  *  TIME_DayLightCompareDate
76  *
77  *  Compares two dates without looking at the year
78  *
79  * RETURNS
80  *
81  *  -1 if date < compareDate
82  *   0 if date == compareDate
83  *   1 if date > compareDate
84  *  -2 if an error occurs
85  */
86 static int TIME_DayLightCompareDate(
87     const SYSTEMTIME *date,        /* [in] The local time to compare. */
88     const SYSTEMTIME *compareDate) /* [in] The daylight saving begin
89                                        or end date */
90 {
91     int limit_day, dayinsecs;
92
93     if (date->wMonth < compareDate->wMonth)
94         return -1; /* We are in a month before the date limit. */
95
96     if (date->wMonth > compareDate->wMonth)
97         return 1; /* We are in a month after the date limit. */
98
99     if (compareDate->wDayOfWeek <= 6)
100     {
101         WORD First;
102         /* compareDate->wDay is interpreted as number of the week in the month
103          * 5 means: the last week in the month */
104         int weekofmonth = compareDate->wDay;
105           /* calculate the day of the first DayOfWeek in the month */
106         First = ( 6 + compareDate->wDayOfWeek - date->wDayOfWeek + date->wDay 
107                ) % 7 + 1;
108         limit_day = First + 7 * (weekofmonth - 1);
109         /* check needed for the 5th weekday of the month */
110         if(limit_day > MonthLengths[date->wMonth==2 && IsLeapYear(date->wYear)]
111                 [date->wMonth - 1])
112             limit_day -= 7;
113     }
114     else
115     {
116        limit_day = compareDate->wDay;
117     }
118
119     /* convert to seconds */
120     limit_day = ((limit_day * 24  + compareDate->wHour) * 60 +
121             compareDate->wMinute ) * 60;
122     dayinsecs = ((date->wDay * 24  + date->wHour) * 60 +
123             date->wMinute ) * 60 + date->wSecond;
124     /* and compare */
125     return dayinsecs < limit_day ? -1 :
126            dayinsecs > limit_day ? 1 :
127            0;   /* date is equal to the date limit. */
128 }
129
130 /***********************************************************************
131  *  TIME_CompTimeZoneID
132  *
133  *  Computes the local time bias for a given time and time zone
134  *
135  *  Returns:
136  *      TIME_ZONE_ID_INVALID    An error occurred
137  *      TIME_ZONE_ID_UNKNOWN    There are no transition time known
138  *      TIME_ZONE_ID_STANDARD   Current time is standard time
139  *      TIME_ZONE_ID_DAYLIGHT   Current time is dayligh saving time
140  */
141 static BOOL TIME_CompTimeZoneID (
142     const TIME_ZONE_INFORMATION *pTZinfo, /* [in] The time zone data. */
143     FILETIME      *lpFileTime,            /* [in] The system or local time. */
144     BOOL           islocal                /* [in] it is local time */       
145     )
146 {
147     int ret;
148     BOOL beforeStandardDate, afterDaylightDate;
149     DWORD retval = TIME_ZONE_ID_INVALID;
150     LONGLONG llTime = 0; /* initialized to prevent gcc complaining */
151     SYSTEMTIME SysTime;
152     FILETIME ftTemp;
153
154     if (pTZinfo->DaylightDate.wMonth != 0)
155     {
156         if (pTZinfo->StandardDate.wMonth == 0 ||
157             pTZinfo->StandardDate.wDay<1 ||
158             pTZinfo->StandardDate.wDay>5 ||
159             pTZinfo->DaylightDate.wDay<1 ||
160             pTZinfo->DaylightDate.wDay>5)
161         {
162             SetLastError(ERROR_INVALID_PARAMETER);
163             return TIME_ZONE_ID_INVALID;
164         }
165
166         if (!islocal) {
167             FILETIME2LL( lpFileTime, llTime );
168             llTime -= ( pTZinfo->Bias + pTZinfo->DaylightBias )
169                 * (LONGLONG)600000000;
170             LL2FILETIME( llTime, &ftTemp)
171             lpFileTime = &ftTemp;
172         }
173
174         FileTimeToSystemTime(lpFileTime, &SysTime);
175         
176          /* check for daylight saving */
177         ret = TIME_DayLightCompareDate( &SysTime, &pTZinfo->StandardDate);
178         if (ret == -2)
179           return TIME_ZONE_ID_INVALID;
180
181         beforeStandardDate = ret < 0;
182
183         if (!islocal) {
184             llTime -= ( pTZinfo->StandardBias - pTZinfo->DaylightBias )
185                 * (LONGLONG)600000000;
186             LL2FILETIME( llTime, &ftTemp)
187             FileTimeToSystemTime(lpFileTime, &SysTime);
188         }
189
190         ret = TIME_DayLightCompareDate( &SysTime, &pTZinfo->DaylightDate);
191         if (ret == -2)
192           return TIME_ZONE_ID_INVALID;
193
194         afterDaylightDate = ret >= 0;
195
196         retval = TIME_ZONE_ID_STANDARD;
197         if( pTZinfo->DaylightDate.wMonth <  pTZinfo->StandardDate.wMonth ) {
198             /* Northern hemisphere */
199             if( beforeStandardDate && afterDaylightDate )
200                 retval = TIME_ZONE_ID_DAYLIGHT;
201         } else    /* Down south */
202             if( beforeStandardDate || afterDaylightDate )
203             retval = TIME_ZONE_ID_DAYLIGHT;
204     } else 
205         /* No transition date */
206         retval = TIME_ZONE_ID_UNKNOWN;
207         
208     return retval;
209 }
210
211 /***********************************************************************
212  *  TIME_TimeZoneID
213  *
214  *  Calculates whether daylight saving is on now.
215  *
216  *  Returns:
217  *      TIME_ZONE_ID_INVALID    An error occurred
218  *      TIME_ZONE_ID_UNKNOWN    There are no transition time known
219  *      TIME_ZONE_ID_STANDARD   Current time is standard time
220  *      TIME_ZONE_ID_DAYLIGHT   Current time is dayligh saving time
221  */
222 static DWORD TIME_ZoneID(
223         const TIME_ZONE_INFORMATION  *pTzi   /* Timezone info */
224         )
225 {
226     FILETIME ftTime;
227     GetSystemTimeAsFileTime( &ftTime);
228     return TIME_CompTimeZoneID( pTzi, &ftTime, FALSE);
229 }
230
231 /***********************************************************************
232  *  TIME_GetTimezoneBias
233  *
234  *  Calculates the local time bias for a given time zone
235  *
236  * RETURNS
237  *
238  *  Returns TRUE when the time zone bias was calculated.
239  */
240 static BOOL TIME_GetTimezoneBias(
241     const TIME_ZONE_INFORMATION
242                   *pTZinfo, /* [in] The time zone data. */
243     FILETIME      *lpFileTime,         /* [in] The system or local time. */
244     BOOL           islocal,            /* [in] it is local time */       
245     LONG          *pBias               /* [out] The calculated bias in minutes */
246     )
247 {
248     LONG bias = pTZinfo->Bias;
249     DWORD tzid = TIME_CompTimeZoneID( pTZinfo, lpFileTime, islocal);
250
251     if( tzid == TIME_ZONE_ID_INVALID)
252         return FALSE;
253     if (tzid == TIME_ZONE_ID_DAYLIGHT)
254         bias += pTZinfo->DaylightBias;
255     else if (tzid == TIME_ZONE_ID_STANDARD)
256         bias += pTZinfo->StandardBias;
257     *pBias = bias;
258     return TRUE;
259 }
260
261
262 /***********************************************************************
263  *              SetLocalTime            (KERNEL32.@)
264  *
265  *  Set the local time using current time zone and daylight
266  *  savings settings.
267  *
268  * RETURNS
269  *  Success: TRUE. The time was set
270  *  Failure: FALSE, if the time was invalid or caller does not have
271  *           permission to change the time.
272  */
273 BOOL WINAPI SetLocalTime(
274     const SYSTEMTIME *systime) /* [in] The desired local time. */
275 {
276     FILETIME ft;
277     LARGE_INTEGER st, st2;
278     NTSTATUS status;
279
280     if( !SystemTimeToFileTime( systime, &ft ))
281         return FALSE;
282     st.u.LowPart = ft.dwLowDateTime;
283     st.u.HighPart = ft.dwHighDateTime;
284     RtlLocalTimeToSystemTime( &st, &st2 );
285
286     if ((status = NtSetSystemTime(&st2, NULL)))
287         SetLastError( RtlNtStatusToDosError(status) );
288     return !status;
289 }
290
291
292 /***********************************************************************
293  *           GetSystemTimeAdjustment     (KERNEL32.@)
294  *
295  *  Get the period between clock interrupts and the amount the clock
296  *  is adjusted each interrupt so as to keep it in sync with an external source.
297  *
298  * RETURNS
299  *  TRUE.
300  *
301  * BUGS
302  *  Only the special case of disabled time adjustments is supported.
303  */
304 BOOL WINAPI GetSystemTimeAdjustment(
305     PDWORD lpTimeAdjustment,         /* [out] The clock adjustment per interrupt in 100's of nanoseconds. */
306     PDWORD lpTimeIncrement,          /* [out] The time between clock interrupts in 100's of nanoseconds. */
307     PBOOL  lpTimeAdjustmentDisabled) /* [out] The clock synchronisation has been disabled. */
308 {
309     *lpTimeAdjustment = 0;
310     *lpTimeIncrement = 0;
311     *lpTimeAdjustmentDisabled = TRUE;
312     return TRUE;
313 }
314
315
316 /***********************************************************************
317  *              SetSystemTime            (KERNEL32.@)
318  *
319  *  Set the system time in utc.
320  *
321  * RETURNS
322  *  Success: TRUE. The time was set
323  *  Failure: FALSE, if the time was invalid or caller does not have
324  *           permission to change the time.
325  */
326 BOOL WINAPI SetSystemTime(
327     const SYSTEMTIME *systime) /* [in] The desired system time. */
328 {
329     FILETIME ft;
330     LARGE_INTEGER t;
331     NTSTATUS status;
332
333     if( !SystemTimeToFileTime( systime, &ft ))
334         return FALSE;
335     t.u.LowPart = ft.dwLowDateTime;
336     t.u.HighPart = ft.dwHighDateTime;
337     if ((status = NtSetSystemTime(&t, NULL)))
338         SetLastError( RtlNtStatusToDosError(status) );
339     return !status;
340 }
341
342 /***********************************************************************
343  *              SetSystemTimeAdjustment  (KERNEL32.@)
344  *
345  *  Enables or disables the timing adjustments to the system's clock.
346  *
347  * RETURNS
348  *  Success: TRUE.
349  *  Failure: FALSE.
350  */
351 BOOL WINAPI SetSystemTimeAdjustment(
352     DWORD dwTimeAdjustment,
353     BOOL bTimeAdjustmentDisabled)
354 {
355     /* Fake function for now... */
356     FIXME("(%08lx,%d): stub !\n", dwTimeAdjustment, bTimeAdjustmentDisabled);
357     return TRUE;
358 }
359
360 /***********************************************************************
361  *              GetTimeZoneInformation  (KERNEL32.@)
362  *
363  *  Get information about the current local time zone.
364  *
365  * RETURNS
366  *      TIME_ZONE_ID_INVALID    An error occurred
367  *      TIME_ZONE_ID_UNKNOWN    There are no transition time known
368  *      TIME_ZONE_ID_STANDARD   Current time is standard time
369  *      TIME_ZONE_ID_DAYLIGHT   Current time is dayligh saving time
370  */
371 DWORD WINAPI GetTimeZoneInformation(
372     LPTIME_ZONE_INFORMATION tzinfo) /* [out] Destination for time zone information */
373 {
374     NTSTATUS status;
375     if ((status = RtlQueryTimeZoneInformation(tzinfo))) {
376         SetLastError( RtlNtStatusToDosError(status) );
377         return TIME_ZONE_ID_INVALID;
378     }
379     return TIME_ZoneID( tzinfo );
380 }
381
382 /***********************************************************************
383  *              SetTimeZoneInformation  (KERNEL32.@)
384  *
385  *  Change the settings of the current local time zone.
386  *
387  * RETURNS
388  *  Success: TRUE. The time zone was updated with the settings from tzinfo
389  *  Failure: FALSE.
390  */
391 BOOL WINAPI SetTimeZoneInformation(
392     const TIME_ZONE_INFORMATION *tzinfo) /* [in] The new time zone. */
393 {
394     NTSTATUS status;
395     if ((status = RtlSetTimeZoneInformation(tzinfo)))
396         SetLastError( RtlNtStatusToDosError(status) );
397     return !status;
398 }
399
400 /***********************************************************************
401  *              SystemTimeToTzSpecificLocalTime  (KERNEL32.@)
402  *
403  *  Convert a utc system time to a local time in a given time zone.
404  *
405  * RETURNS
406  *  Success: TRUE. lpLocalTime contains the converted time
407  *  Failure: FALSE.
408  */
409
410 BOOL WINAPI SystemTimeToTzSpecificLocalTime(
411     LPTIME_ZONE_INFORMATION
412            lpTimeZoneInformation, /* [in] The desired time zone. */
413     LPSYSTEMTIME lpUniversalTime, /* [in] The utc time to base local time on. */
414     LPSYSTEMTIME lpLocalTime)     /* [out] The local time in the time zone. */
415 {
416     FILETIME ft;
417     LONG lBias;
418     LONGLONG llTime;
419     TIME_ZONE_INFORMATION tzinfo;
420
421     if (lpTimeZoneInformation != NULL)
422     {
423         memcpy(&tzinfo, lpTimeZoneInformation, sizeof(TIME_ZONE_INFORMATION));
424     }
425     else
426     {
427         if (GetTimeZoneInformation(&tzinfo) == TIME_ZONE_ID_INVALID)
428             return FALSE;
429     }
430
431     if (!SystemTimeToFileTime(lpUniversalTime, &ft))
432         return FALSE;
433     FILETIME2LL( &ft, llTime)
434     if (!TIME_GetTimezoneBias(&tzinfo, &ft, FALSE, &lBias))
435         return FALSE;
436     /* convert minutes to 100-nanoseconds-ticks */
437     llTime -= (LONGLONG)lBias * 600000000;
438     LL2FILETIME( llTime, &ft)
439
440     return FileTimeToSystemTime(&ft, lpLocalTime);
441 }
442
443
444 /***********************************************************************
445  *              TzSpecificLocalTimeToSystemTime  (KERNEL32.@)
446  *
447  *  Converts a local time to a time in utc.
448  *
449  * RETURNS
450  *  Success: TRUE. lpUniversalTime contains the converted time
451  *  Failure: FALSE.
452  */
453 BOOL WINAPI TzSpecificLocalTimeToSystemTime(
454     LPTIME_ZONE_INFORMATION lpTimeZoneInformation, /* [in] The desired time zone. */
455     LPSYSTEMTIME            lpLocalTime,           /* [in] The local time. */
456     LPSYSTEMTIME            lpUniversalTime)       /* [out] The calculated utc time. */
457 {
458     FILETIME ft;
459     LONG lBias;
460     LONGLONG t;
461     TIME_ZONE_INFORMATION tzinfo;
462
463     if (lpTimeZoneInformation != NULL)
464     {
465         memcpy(&tzinfo, lpTimeZoneInformation, sizeof(TIME_ZONE_INFORMATION));
466     }
467     else
468     {
469         if (GetTimeZoneInformation(&tzinfo) == TIME_ZONE_ID_INVALID)
470             return FALSE;
471     }
472
473     if (!SystemTimeToFileTime(lpLocalTime, &ft))
474         return FALSE;
475     FILETIME2LL( &ft, t)
476     if (!TIME_GetTimezoneBias(&tzinfo, &ft, TRUE, &lBias))
477         return FALSE;
478     /* convert minutes to 100-nanoseconds-ticks */
479     t += (LONGLONG)lBias * 600000000;
480     LL2FILETIME( t, &ft)
481     return FileTimeToSystemTime(&ft, lpUniversalTime);
482 }
483
484
485 /***********************************************************************
486  *              GetSystemTimeAsFileTime  (KERNEL32.@)
487  *
488  *  Get the current time in utc format.
489  *
490  *  RETURNS
491  *   Nothing.
492  */
493 VOID WINAPI GetSystemTimeAsFileTime(
494     LPFILETIME time) /* [out] Destination for the current utc time */
495 {
496     LARGE_INTEGER t;
497     NtQuerySystemTime( &t );
498     time->dwLowDateTime = t.u.LowPart;
499     time->dwHighDateTime = t.u.HighPart;
500 }
501
502
503 /*********************************************************************
504  *      TIME_ClockTimeToFileTime    (olorin@fandra.org, 20-Sep-1998)
505  *
506  *  Used by GetProcessTimes to convert clock_t into FILETIME.
507  *
508  *      Differences to UnixTimeToFileTime:
509  *          1) Divided by CLK_TCK
510  *          2) Time is relative. There is no 'starting date', so there is
511  *             no need for offset correction, like in UnixTimeToFileTime
512  */
513 static void TIME_ClockTimeToFileTime(clock_t unix_time, LPFILETIME filetime)
514 {
515     ULONGLONG secs = RtlEnlargedUnsignedMultiply( unix_time, 10000000 );
516     secs = RtlExtendedLargeIntegerDivide( secs, CLK_TCK, NULL );
517     filetime->dwLowDateTime  = (DWORD)secs;
518     filetime->dwHighDateTime = (DWORD)(secs >> 32);
519 }
520
521 /*********************************************************************
522  *      GetProcessTimes                         (KERNEL32.@)
523  *
524  *  Get the user and kernel execution times of a process,
525  *  along with the creation and exit times if known.
526  *
527  * RETURNS
528  *  TRUE.
529  *
530  * NOTES
531  *  olorin@fandra.org:
532  *  Would be nice to subtract the cpu time used by Wine at startup.
533  *  Also, there is a need to separate times used by different applications.
534  *
535  * BUGS
536  *  lpCreationTime and lpExitTime are not initialised in the Wine implementation.
537  */
538 BOOL WINAPI GetProcessTimes(
539     HANDLE     hprocess,       /* [in] The process to be queried (obtained from PROCESS_QUERY_INFORMATION). */
540     LPFILETIME lpCreationTime, /* [out] The creation time of the process. */
541     LPFILETIME lpExitTime,     /* [out] The exit time of the process if exited. */
542     LPFILETIME lpKernelTime,   /* [out] The time spent in kernel routines in 100's of nanoseconds. */
543     LPFILETIME lpUserTime)     /* [out] The time spent in user routines in 100's of nanoseconds. */
544 {
545     struct tms tms;
546
547     times(&tms);
548     TIME_ClockTimeToFileTime(tms.tms_utime,lpUserTime);
549     TIME_ClockTimeToFileTime(tms.tms_stime,lpKernelTime);
550     return TRUE;
551 }
552
553 /*********************************************************************
554  *      GetCalendarInfoA                                (KERNEL32.@)
555  *
556  */
557 int WINAPI GetCalendarInfoA(LCID lcid, CALID Calendar, CALTYPE CalType,
558                             LPSTR lpCalData, int cchData, LPDWORD lpValue)
559 {
560     int ret;
561     LPWSTR lpCalDataW = NULL;
562
563     FIXME("(%08lx,%08lx,%08lx,%p,%d,%p): quarter-stub\n",
564           lcid, Calendar, CalType, lpCalData, cchData, lpValue);
565
566     lcid = ConvertDefaultLocale(lcid);
567
568     if (NLS_IsUnicodeOnlyLcid(lcid))
569     {
570       SetLastError(ERROR_INVALID_PARAMETER);
571       return 0;
572     }
573
574     if (cchData &&
575         !(lpCalDataW = HeapAlloc(GetProcessHeap(), 0, cchData*sizeof(WCHAR))))
576       return 0;
577
578     ret = GetCalendarInfoW(lcid, Calendar, CalType, lpCalDataW, cchData, lpValue);
579     if(ret && lpCalDataW && lpCalData)
580       WideCharToMultiByte(CP_ACP, 0, lpCalDataW, cchData, lpCalData, cchData, NULL, NULL);
581     HeapFree(GetProcessHeap(), 0, lpCalDataW);
582
583     return ret;
584 }
585
586 /*********************************************************************
587  *      GetCalendarInfoW                                (KERNEL32.@)
588  *
589  * See GetCalendarInfoA.
590  */
591 int WINAPI GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType,
592                             LPWSTR lpCalData, int cchData, LPDWORD lpValue)
593 {
594     FIXME("(%08lx,%08lx,%08lx,%p,%d,%p): quarter-stub\n",
595           Locale, Calendar, CalType, lpCalData, cchData, lpValue);
596
597     if (CalType & CAL_NOUSEROVERRIDE)
598         FIXME("flag CAL_NOUSEROVERRIDE used, not fully implemented\n");
599     if (CalType & CAL_USE_CP_ACP)
600         FIXME("flag CAL_USE_CP_ACP used, not fully implemented\n");
601
602     if (CalType & CAL_RETURN_NUMBER) {
603         if (lpCalData != NULL)
604             WARN("lpCalData not NULL (%p) when it should!\n", lpCalData);
605         if (cchData != 0)
606             WARN("cchData not 0 (%d) when it should!\n", cchData);
607     } else {
608         if (lpValue != NULL)
609             WARN("lpValue not NULL (%p) when it should!\n", lpValue);
610     }
611
612     /* FIXME: No verification is made yet wrt Locale
613      * for the CALTYPES not requiring GetLocaleInfoA */
614     switch (CalType & ~(CAL_NOUSEROVERRIDE|CAL_RETURN_NUMBER|CAL_USE_CP_ACP)) {
615         case CAL_ICALINTVALUE:
616             FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
617             return E_FAIL;
618         case CAL_SCALNAME:
619             FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
620             return E_FAIL;
621         case CAL_IYEAROFFSETRANGE:
622             FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
623             return E_FAIL;
624         case CAL_SERASTRING:
625             FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
626             return E_FAIL;
627         case CAL_SSHORTDATE:
628             return GetLocaleInfoW(Locale, LOCALE_SSHORTDATE, lpCalData, cchData);
629         case CAL_SLONGDATE:
630             return GetLocaleInfoW(Locale, LOCALE_SLONGDATE, lpCalData, cchData);
631         case CAL_SDAYNAME1:
632             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME1, lpCalData, cchData);
633         case CAL_SDAYNAME2:
634             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME2, lpCalData, cchData);
635         case CAL_SDAYNAME3:
636             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME3, lpCalData, cchData);
637         case CAL_SDAYNAME4:
638             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME4, lpCalData, cchData);
639         case CAL_SDAYNAME5:
640             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME5, lpCalData, cchData);
641         case CAL_SDAYNAME6:
642             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME6, lpCalData, cchData);
643         case CAL_SDAYNAME7:
644             return GetLocaleInfoW(Locale, LOCALE_SDAYNAME7, lpCalData, cchData);
645         case CAL_SABBREVDAYNAME1:
646             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME1, lpCalData, cchData);
647         case CAL_SABBREVDAYNAME2:
648             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME2, lpCalData, cchData);
649         case CAL_SABBREVDAYNAME3:
650             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME3, lpCalData, cchData);
651         case CAL_SABBREVDAYNAME4:
652             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME4, lpCalData, cchData);
653         case CAL_SABBREVDAYNAME5:
654             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME5, lpCalData, cchData);
655         case CAL_SABBREVDAYNAME6:
656             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME6, lpCalData, cchData);
657         case CAL_SABBREVDAYNAME7:
658             return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME7, lpCalData, cchData);
659         case CAL_SMONTHNAME1:
660             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME1, lpCalData, cchData);
661         case CAL_SMONTHNAME2:
662             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME2, lpCalData, cchData);
663         case CAL_SMONTHNAME3:
664             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME3, lpCalData, cchData);
665         case CAL_SMONTHNAME4:
666             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME4, lpCalData, cchData);
667         case CAL_SMONTHNAME5:
668             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME5, lpCalData, cchData);
669         case CAL_SMONTHNAME6:
670             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME6, lpCalData, cchData);
671         case CAL_SMONTHNAME7:
672             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME7, lpCalData, cchData);
673         case CAL_SMONTHNAME8:
674             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME8, lpCalData, cchData);
675         case CAL_SMONTHNAME9:
676             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME9, lpCalData, cchData);
677         case CAL_SMONTHNAME10:
678             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME10, lpCalData, cchData);
679         case CAL_SMONTHNAME11:
680             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME11, lpCalData, cchData);
681         case CAL_SMONTHNAME12:
682             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME12, lpCalData, cchData);
683         case CAL_SMONTHNAME13:
684             return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME13, lpCalData, cchData);
685         case CAL_SABBREVMONTHNAME1:
686             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME1, lpCalData, cchData);
687         case CAL_SABBREVMONTHNAME2:
688             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME2, lpCalData, cchData);
689         case CAL_SABBREVMONTHNAME3:
690             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME3, lpCalData, cchData);
691         case CAL_SABBREVMONTHNAME4:
692             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME4, lpCalData, cchData);
693         case CAL_SABBREVMONTHNAME5:
694             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME5, lpCalData, cchData);
695         case CAL_SABBREVMONTHNAME6:
696             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME6, lpCalData, cchData);
697         case CAL_SABBREVMONTHNAME7:
698             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME7, lpCalData, cchData);
699         case CAL_SABBREVMONTHNAME8:
700             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME8, lpCalData, cchData);
701         case CAL_SABBREVMONTHNAME9:
702             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME9, lpCalData, cchData);
703         case CAL_SABBREVMONTHNAME10:
704             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME10, lpCalData, cchData);
705         case CAL_SABBREVMONTHNAME11:
706             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME11, lpCalData, cchData);
707         case CAL_SABBREVMONTHNAME12:
708             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME12, lpCalData, cchData);
709         case CAL_SABBREVMONTHNAME13:
710             return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME13, lpCalData, cchData);
711         case CAL_SYEARMONTH:
712             return GetLocaleInfoW(Locale, LOCALE_SYEARMONTH, lpCalData, cchData);
713         case CAL_ITWODIGITYEARMAX:
714             if (lpValue) *lpValue = CALINFO_MAX_YEAR;
715             break;
716         default: MESSAGE("Unknown caltype %ld\n",CalType & 0xffff);
717                  return E_FAIL;
718     }
719     return 0;
720 }
721
722 /*********************************************************************
723  *      SetCalendarInfoA                                (KERNEL32.@)
724  *
725  */
726 int WINAPI      SetCalendarInfoA(LCID Locale, CALID Calendar, CALTYPE CalType, LPCSTR lpCalData)
727 {
728     FIXME("(%08lx,%08lx,%08lx,%s): stub\n",
729           Locale, Calendar, CalType, debugstr_a(lpCalData));
730     return 0;
731 }
732
733 /*********************************************************************
734  *      SetCalendarInfoW                                (KERNEL32.@)
735  *
736  * See SetCalendarInfoA.
737  */
738 int WINAPI      SetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType, LPCWSTR lpCalData)
739 {
740     FIXME("(%08lx,%08lx,%08lx,%s): stub\n",
741           Locale, Calendar, CalType, debugstr_w(lpCalData));
742     return 0;
743 }
744
745 /*********************************************************************
746  *      LocalFileTimeToFileTime                         (KERNEL32.@)
747  */
748 BOOL WINAPI LocalFileTimeToFileTime( const FILETIME *localft, LPFILETIME utcft )
749 {
750     NTSTATUS status;
751     LARGE_INTEGER local, utc;
752
753     local.u.LowPart = localft->dwLowDateTime;
754     local.u.HighPart = localft->dwHighDateTime;
755     if (!(status = RtlLocalTimeToSystemTime( &local, &utc )))
756     {
757         utcft->dwLowDateTime = utc.u.LowPart;
758         utcft->dwHighDateTime = utc.u.HighPart;
759     }
760     else SetLastError( RtlNtStatusToDosError(status) );
761
762     return !status;
763 }
764
765 /*********************************************************************
766  *      FileTimeToLocalFileTime                         (KERNEL32.@)
767  */
768 BOOL WINAPI FileTimeToLocalFileTime( const FILETIME *utcft, LPFILETIME localft )
769 {
770     NTSTATUS status;
771     LARGE_INTEGER local, utc;
772
773     utc.u.LowPart = utcft->dwLowDateTime;
774     utc.u.HighPart = utcft->dwHighDateTime;
775     if (!(status = RtlSystemTimeToLocalTime( &utc, &local )))
776     {
777         localft->dwLowDateTime = local.u.LowPart;
778         localft->dwHighDateTime = local.u.HighPart;
779     }
780     else SetLastError( RtlNtStatusToDosError(status) );
781
782     return !status;
783 }
784
785 /*********************************************************************
786  *      FileTimeToSystemTime                            (KERNEL32.@)
787  */
788 BOOL WINAPI FileTimeToSystemTime( const FILETIME *ft, LPSYSTEMTIME syst )
789 {
790     TIME_FIELDS tf;
791     LARGE_INTEGER t;
792
793     t.u.LowPart = ft->dwLowDateTime;
794     t.u.HighPart = ft->dwHighDateTime;
795     RtlTimeToTimeFields(&t, &tf);
796
797     syst->wYear = tf.Year;
798     syst->wMonth = tf.Month;
799     syst->wDay = tf.Day;
800     syst->wHour = tf.Hour;
801     syst->wMinute = tf.Minute;
802     syst->wSecond = tf.Second;
803     syst->wMilliseconds = tf.Milliseconds;
804     syst->wDayOfWeek = tf.Weekday;
805     return TRUE;
806 }
807
808 /*********************************************************************
809  *      SystemTimeToFileTime                            (KERNEL32.@)
810  */
811 BOOL WINAPI SystemTimeToFileTime( const SYSTEMTIME *syst, LPFILETIME ft )
812 {
813     TIME_FIELDS tf;
814     LARGE_INTEGER t;
815
816     tf.Year = syst->wYear;
817     tf.Month = syst->wMonth;
818     tf.Day = syst->wDay;
819     tf.Hour = syst->wHour;
820     tf.Minute = syst->wMinute;
821     tf.Second = syst->wSecond;
822     tf.Milliseconds = syst->wMilliseconds;
823
824     if( !RtlTimeFieldsToTime(&tf, &t)) {
825         SetLastError( ERROR_INVALID_PARAMETER);
826         return FALSE;
827     }
828     ft->dwLowDateTime = t.u.LowPart;
829     ft->dwHighDateTime = t.u.HighPart;
830     return TRUE;
831 }
832
833 /*********************************************************************
834  *      CompareFileTime                                 (KERNEL32.@)
835  *
836  * Compare two FILETIME's to each other.
837  *
838  * PARAMS
839  *  x [I] First time
840  *  y [I] time to compare to x
841  *
842  * RETURNS
843  *  -1, 0, or 1 indicating that x is less than, equal to, or greater
844  *  than y respectively.
845  */
846 INT WINAPI CompareFileTime( const FILETIME *x, const FILETIME *y )
847 {
848     if (!x || !y) return -1;
849
850     if (x->dwHighDateTime > y->dwHighDateTime)
851         return 1;
852     if (x->dwHighDateTime < y->dwHighDateTime)
853         return -1;
854     if (x->dwLowDateTime > y->dwLowDateTime)
855         return 1;
856     if (x->dwLowDateTime < y->dwLowDateTime)
857         return -1;
858     return 0;
859 }
860
861 /*********************************************************************
862  *      GetLocalTime                                    (KERNEL32.@)
863  *
864  * Get the current local time.
865  *
866  * RETURNS
867  *  Nothing.
868  */
869 VOID WINAPI GetLocalTime(LPSYSTEMTIME systime) /* [O] Destination for current time */
870 {
871     FILETIME lft;
872     LARGE_INTEGER ft, ft2;
873
874     NtQuerySystemTime(&ft);
875     RtlSystemTimeToLocalTime(&ft, &ft2);
876     lft.dwLowDateTime = ft2.u.LowPart;
877     lft.dwHighDateTime = ft2.u.HighPart;
878     FileTimeToSystemTime(&lft, systime);
879 }
880
881 /*********************************************************************
882  *      GetSystemTime                                   (KERNEL32.@)
883  *
884  * Get the current system time.
885  *
886  * RETURNS
887  *  Nothing.
888  */
889 VOID WINAPI GetSystemTime(LPSYSTEMTIME systime) /* [O] Destination for current time */
890 {
891     FILETIME ft;
892     LARGE_INTEGER t;
893
894     NtQuerySystemTime(&t);
895     ft.dwLowDateTime = t.u.LowPart;
896     ft.dwHighDateTime = t.u.HighPart;
897     FileTimeToSystemTime(&ft, systime);
898 }
899
900 /*********************************************************************
901  *      GetDaylightFlag                                   (KERNEL32.@)
902  *
903  *      returns TRUE if daylight saving time is in operation
904  *
905  *      Note: this function is called from the Win98's control applet
906  *      timedate.cpl
907  */
908 BOOL WINAPI GetDaylightFlag(void)
909 {
910     TIME_ZONE_INFORMATION tzinfo;
911     return GetTimeZoneInformation( &tzinfo) == TIME_ZONE_ID_DAYLIGHT;
912 }
913
914 /***********************************************************************
915  *           DosDateTimeToFileTime   (KERNEL32.@)
916  */
917 BOOL WINAPI DosDateTimeToFileTime( WORD fatdate, WORD fattime, LPFILETIME ft)
918 {
919     struct tm newtm;
920 #ifndef HAVE_TIMEGM
921     struct tm *gtm;
922     time_t time1, time2;
923 #endif
924
925     newtm.tm_sec  = (fattime & 0x1f) * 2;
926     newtm.tm_min  = (fattime >> 5) & 0x3f;
927     newtm.tm_hour = (fattime >> 11);
928     newtm.tm_mday = (fatdate & 0x1f);
929     newtm.tm_mon  = ((fatdate >> 5) & 0x0f) - 1;
930     newtm.tm_year = (fatdate >> 9) + 80;
931 #ifdef HAVE_TIMEGM
932     RtlSecondsSince1970ToTime( timegm(&newtm), (LARGE_INTEGER *)ft );
933 #else
934     time1 = mktime(&newtm);
935     gtm = gmtime(&time1);
936     time2 = mktime(gtm);
937     RtlSecondsSince1970ToTime( 2*time1-time2, (LARGE_INTEGER *)ft );
938 #endif
939     return TRUE;
940 }
941
942
943 /***********************************************************************
944  *           FileTimeToDosDateTime   (KERNEL32.@)
945  */
946 BOOL WINAPI FileTimeToDosDateTime( const FILETIME *ft, LPWORD fatdate,
947                                      LPWORD fattime )
948 {
949     LARGE_INTEGER       li;
950     ULONG               t;
951     time_t              unixtime;
952     struct tm*          tm;
953
954     li.u.LowPart = ft->dwLowDateTime;
955     li.u.HighPart = ft->dwHighDateTime;
956     RtlTimeToSecondsSince1970( &li, &t );
957     unixtime = t;
958     tm = gmtime( &unixtime );
959     if (fattime)
960         *fattime = (tm->tm_hour << 11) + (tm->tm_min << 5) + (tm->tm_sec / 2);
961     if (fatdate)
962         *fatdate = ((tm->tm_year - 80) << 9) + ((tm->tm_mon + 1) << 5)
963                    + tm->tm_mday;
964     return TRUE;
965 }