Fixed some alignment issues (based on a patch by Gregg Mattinson).
[wine.git] / dlls / kernel / time.c
blob607f70a621ea7eb0407f117b48bc969d6324082b
1 /*
2 * Win32 kernel functions
4 * Copyright 1995 Martin von Loewis and Cameron Heide
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.
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.
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
21 #include "config.h"
23 #include <string.h>
24 #include <unistd.h>
25 #include <stdlib.h>
26 #include <sys/time.h>
27 #include <sys/times.h>
28 #include "file.h"
29 #include "ntddk.h"
30 #include "winerror.h"
31 #include "winnls.h"
32 #include "wine/unicode.h"
33 #include "wine/debug.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(win32);
37 /* maximum time adjustment in seconds for SetLocalTime and SetSystemTime */
38 #define SETTIME_MAX_ADJUST 120
41 /* This structure is used to store strings that represent all of the time zones
42 in the world. (This is used to help GetTimeZoneInformation)
44 struct tagTZ_INFO
46 const char *psTZFromUnix;
47 WCHAR psTZWindows[32];
48 int bias;
49 int dst;
52 static const struct tagTZ_INFO TZ_INFO[] =
54 {"MHT",
55 {'D','a','t','e','l','i','n','e',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
56 -720, 0},
57 {"SST",
58 {'S','a','m','o','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
59 660, 0},
60 {"HST",
61 {'H','a','w','a','i','i','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
62 600, 0},
63 {"AKDT",
64 {'A','l','a','s','k','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
65 480, 1},
66 {"PDT",
67 {'P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
68 420, 1},
69 {"MST",
70 {'U','S',' ','M','o','u','n','t','a','i','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
71 420, 0},
72 {"MDT",
73 {'M','o','u','n','t','a','i','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
74 360, 1},
75 {"CST",
76 {'C','e','n','t','r','a','l',' ','A','m','e','r','i','c','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
77 360, 0},
78 {"CDT",
79 {'C','e','n','t','r','a','l',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
80 300, 1},
81 {"COT",
82 {'S','A',' ','P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
83 300, 0},
84 {"EDT",
85 {'E','a','s','t','e','r','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
86 240, 1},
87 {"EST",
88 {'U','S',' ','E','a','s','t','e','r','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
89 300, 0},
90 {"ADT",
91 {'A','t','l','a','n','t','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
92 180, 1},
93 {"VET",
94 {'S','A',' ','W','e','s','t','e','r','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
95 240, 0},
96 {"CLT",
97 {'P','a','c','i','f','i','c',' ','S','A',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
98 240, 0},
99 {"NDT",
100 {'N','e','w','f','o','u','n','d','l','a','n','d',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
101 150, 1},
102 {"BRT",
103 {'E','.',' ','S','o','u','t','h',' ','A','m','e','r','i','c','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
104 180, 0},
105 {"ART",
106 {'S','A',' ','E','a','s','t','e','r','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
107 180, 0},
108 {"WGST",
109 {'G','r','e','e','n','l','a','n','d',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
110 120, 1},
111 {"GST",
112 {'M','i','d','-','A','t','l','a','n','t','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
113 120, 0},
114 {"AZOST",
115 {'A','z','o','r','e','s',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
116 0, 1},
117 {"CVT",
118 {'C','a','p','e',' ','V','e','r','d','e',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
119 60, 0},
120 {"WET",
121 {'G','r','e','e','n','w','i','c','h',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
122 0, 0},
123 {"BST",
124 {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
125 -60, 1},
126 {"GMT",
127 {'G','M','T',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
128 0, 0},
129 {"CEST",
130 {'C','e','n','t','r','a','l',' ','E','u','r','o','p','e',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
131 -120, 1},
132 {"WAT",
133 {'W','.',' ','C','e','n','t','r','a','l',' ','A','f','r','i','c','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
134 -60, 0},
135 {"EEST",
136 {'E','.',' ','E','u','r','o','p','e',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
137 -180, 1},
138 {"EET",
139 {'E','g','y','p','t',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
140 -120, 0},
141 {"CAT",
142 {'S','o','u','t','h',' ','A','f','r','i','c','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
143 -120, 0},
144 {"IST",
145 {'I','s','r','a','e','l',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
146 -120, 0},
147 {"ADT",
148 {'A','r','a','b','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
149 -240, 1},
150 {"AST",
151 {'A','r','a','b',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
152 -180, 0},
153 {"MSD",
154 {'R','u','s','s','i','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
155 -240, 1},
156 {"EAT",
157 {'E','.',' ','A','f','r','i','c','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
158 -180, 0},
159 {"IRST",
160 {'I','r','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
161 -270, 1},
162 {"GST",
163 {'A','r','a','b','i','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
164 -240, 0},
165 {"AZST",
166 {'C','a','u','c','a','s','u','s',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
167 -300, 1},
168 {"AFT",
169 {'A','f','g','h','a','n','i','s','t','a','n',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
170 -270, 0},
171 {"YEKST",
172 {'E','k','a','t','e','r','i','n','b','u','r','g',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
173 -360, 1},
174 {"PKT",
175 {'W','e','s','t',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
176 -300, 0},
177 {"IST",
178 {'I','n','d','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
179 -330, 0},
180 {"NPT",
181 {'N','e','p','a','l',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
182 -345, 0},
183 {"ALMST",
184 {'N','.',' ','C','e','n','t','r','a','l',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
185 -420, 1},
186 {"BDT",
187 {'C','e','n','t','r','a','l',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
188 -360, 0},
189 {"LKT",
190 {'S','r','i',' ','L','a','n','k','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
191 -360, 0},
192 {"MMT",
193 {'M','y','a','n','m','a','r',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
194 -390, 0},
195 {"ICT",
196 {'S','E',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
197 -420, 0},
198 {"KRAST",
199 {'N','o','r','t','h',' ','A','s','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
200 -480, 1},
201 {"CST",
202 {'C','h','i','n','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
203 -480, 0},
204 {"IRKST",
205 {'N','o','r','t','h',' ','A','s','i','a',' ','E','a','s','t',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
206 -540, 1},
207 {"SGT",
208 {'M','a','l','a','y',' ','P','e','n','i','n','s','u','l','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
209 -480, 0},
210 {"WST",
211 {'W','.',' ','A','u','s','t','r','a','l','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
212 -480, 0},
213 {"JST",
214 {'T','o','k','y','o',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
215 -540, 0},
216 {"KST",
217 {'K','o','r','e','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
218 -540, 0},
219 {"YAKST",
220 {'Y','a','k','u','t','s','k',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
221 -600, 1},
222 {"CST",
223 {'C','e','n','.',' ','A','u','s','t','r','a','l','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
224 -570, 0},
225 {"EST",
226 {'E','.',' ','A','u','s','t','r','a','l','i','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
227 -600, 0},
228 {"GST",
229 {'W','e','s','t',' ','P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
230 -600, 0},
231 {"VLAST",
232 {'V','l','a','d','i','v','o','s','t','o','k',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
233 -660, 1},
234 {"MAGST",
235 {'C','e','n','t','r','a','l',' ','P','a','c','i','f','i','c',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
236 -720, 1},
237 {"NZST",
238 {'N','e','w',' ','Z','e','a','l','a','n','d',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
239 -720, 0},
240 {"FJT",
241 {'F','i','j','i',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
242 -720, 0},
243 {"TOT",
244 {'T','o','n','g','a',' ','S','t','a','n','d','a','r','d',' ','T','i','m','e','\0'},
245 -780, 0}
248 /* TIME_GetTZAsStr: helper function that returns the given timezone as a string.
249 This could be done with a hash table instead of merely iterating through
250 a table, however with the small amount of entries (60 or so) I didn't think
251 it was worth it. */
252 static const WCHAR* TIME_GetTZAsStr (time_t utc, int bias, int dst)
254 char psTZName[7];
255 struct tm *ptm = localtime(&utc);
256 int i;
258 if (!strftime (psTZName, 7, "%Z", ptm))
259 return (NULL);
261 for (i=0; i<(sizeof(TZ_INFO) / sizeof(struct tagTZ_INFO)); i++)
263 if ( strcmp(TZ_INFO[i].psTZFromUnix, psTZName) == 0 &&
264 TZ_INFO[i].bias == bias &&
265 TZ_INFO[i].dst == dst
267 return TZ_INFO[i].psTZWindows;
270 return (NULL);
274 /* TIME_GetBias: helper function calculates delta local time from UTC */
275 static int TIME_GetBias( time_t utc, int *pdaylight)
277 struct tm *ptm = localtime(&utc);
278 *pdaylight = ptm->tm_isdst; /* daylight for local timezone */
279 ptm = gmtime(&utc);
280 ptm->tm_isdst = *pdaylight; /* use local daylight, not that of Greenwich */
281 return (int)(utc-mktime(ptm));
285 /***********************************************************************
286 * SetLocalTime (KERNEL32.@)
288 * Sets the local time using current time zone and daylight
289 * savings settings.
291 * RETURNS
293 * True if the time was set, false if the time was invalid or the
294 * necessary permissions were not held.
296 BOOL WINAPI SetLocalTime(
297 const SYSTEMTIME *systime) /* [in] The desired local time. */
299 struct timeval tv;
300 struct tm t;
301 time_t sec;
302 time_t oldsec=time(NULL);
303 int err;
305 /* get the number of seconds */
306 t.tm_sec = systime->wSecond;
307 t.tm_min = systime->wMinute;
308 t.tm_hour = systime->wHour;
309 t.tm_mday = systime->wDay;
310 t.tm_mon = systime->wMonth - 1;
311 t.tm_year = systime->wYear - 1900;
312 t.tm_isdst = -1;
313 sec = mktime (&t);
315 /* set the new time */
316 tv.tv_sec = sec;
317 tv.tv_usec = systime->wMilliseconds * 1000;
319 /* error and sanity check*/
320 if( sec == (time_t)-1 || abs((int)(sec-oldsec)) > SETTIME_MAX_ADJUST ){
321 err = 1;
322 SetLastError(ERROR_INVALID_PARAMETER);
323 } else {
324 #ifdef HAVE_SETTIMEOFDAY
325 err=settimeofday(&tv, NULL); /* 0 is OK, -1 is error */
326 if(err == 0)
327 return TRUE;
328 SetLastError(ERROR_PRIVILEGE_NOT_HELD);
329 #else
330 err = 1;
331 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
332 #endif
334 ERR("Cannot set time to %d/%d/%d %d:%d:%d Time adjustment %ld %s\n",
335 systime->wYear, systime->wMonth, systime->wDay, systime->wHour,
336 systime->wMinute, systime->wSecond,
337 sec-oldsec, err == -1 ? "No Permission" :
338 sec==(time_t)-1 ? "" : "is too large." );
339 return FALSE;
343 /***********************************************************************
344 * GetSystemTimeAdjustment (KERNEL32.@)
346 * Indicates the period between clock interrupt and the amount the clock
347 * is adjusted each interrupt so as to keep it insync with an external source.
349 * RETURNS
351 * Always returns true.
353 * BUGS
355 * Only the special case of disabled time adjustments is supported.
356 * (also the signature is wrong it should have a return type of BOOL)
358 DWORD WINAPI GetSystemTimeAdjustment(
359 LPDWORD lpTimeAdjustment, /* [out] The clock adjustment per interupt in 100's of nanoseconds. */
360 LPDWORD lpTimeIncrement, /* [out] The time between clock interupts in 100's of nanoseconds. */
361 LPBOOL lpTimeAdjustmentDisabled) /* [out] The clock synchonisation has been disabled. */
363 *lpTimeAdjustment = 0;
364 *lpTimeIncrement = 0;
365 *lpTimeAdjustmentDisabled = TRUE;
366 return TRUE;
370 /***********************************************************************
371 * SetSystemTime (KERNEL32.@)
373 * Sets the system time (utc).
375 * RETURNS
377 * True if the time was set, false if the time was invalid or the
378 * necessary permissions were not held.
380 BOOL WINAPI SetSystemTime(
381 const SYSTEMTIME *systime) /* [in] The desired system time. */
383 struct timeval tv;
384 struct timezone tz;
385 struct tm t;
386 time_t sec, oldsec;
387 int dst, bias;
388 int err;
390 /* call gettimeofday to get the current timezone */
391 gettimeofday(&tv, &tz);
392 oldsec=tv.tv_sec;
393 /* get delta local time from utc */
394 bias=TIME_GetBias(oldsec,&dst);
396 /* get the number of seconds */
397 t.tm_sec = systime->wSecond;
398 t.tm_min = systime->wMinute;
399 t.tm_hour = systime->wHour;
400 t.tm_mday = systime->wDay;
401 t.tm_mon = systime->wMonth - 1;
402 t.tm_year = systime->wYear - 1900;
403 t.tm_isdst = dst;
404 sec = mktime (&t);
405 /* correct for timezone and daylight */
406 sec += bias;
408 /* set the new time */
409 tv.tv_sec = sec;
410 tv.tv_usec = systime->wMilliseconds * 1000;
412 /* error and sanity check*/
413 if( sec == (time_t)-1 || abs((int)(sec-oldsec)) > SETTIME_MAX_ADJUST ){
414 err = 1;
415 SetLastError(ERROR_INVALID_PARAMETER);
416 } else {
417 #ifdef HAVE_SETTIMEOFDAY
418 err=settimeofday(&tv, NULL); /* 0 is OK, -1 is error */
419 if(err == 0)
420 return TRUE;
421 SetLastError(ERROR_PRIVILEGE_NOT_HELD);
422 #else
423 err = 1;
424 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
425 #endif
427 ERR("Cannot set time to %d/%d/%d %d:%d:%d Time adjustment %ld %s\n",
428 systime->wYear, systime->wMonth, systime->wDay, systime->wHour,
429 systime->wMinute, systime->wSecond,
430 sec-oldsec, err == -1 ? "No Permission" :
431 sec==(time_t)-1 ? "" : "is too large." );
432 return FALSE;
436 /***********************************************************************
437 * GetTimeZoneInformation (KERNEL32.@)
439 * Fills in the a time zone information structure with values based on
440 * the current local time.
442 * RETURNS
444 * The daylight savings time standard or TIME_ZONE_ID_INVALID if the call failed.
446 DWORD WINAPI GetTimeZoneInformation(
447 LPTIME_ZONE_INFORMATION tzinfo) /* [out] The time zone structure to be filled in. */
449 time_t gmt;
450 int bias, daylight;
451 const WCHAR *psTZ;
454 memset(tzinfo, 0, sizeof(TIME_ZONE_INFORMATION));
456 gmt = time(NULL);
457 bias=TIME_GetBias(gmt,&daylight);
459 tzinfo->Bias = -bias / 60;
460 tzinfo->StandardBias = 0;
461 tzinfo->DaylightBias = -60;
462 psTZ = TIME_GetTZAsStr (gmt, (-bias/60), daylight);
463 if (psTZ) strcpyW( tzinfo->StandardName, psTZ );
464 return TIME_ZONE_ID_STANDARD;
468 /***********************************************************************
469 * SetTimeZoneInformation (KERNEL32.@)
471 * Set the local time zone with values based on the time zone structure.
473 * RETURNS
475 * True on successful setting of the time zone.
477 * BUGS
479 * Use the obsolete unix timezone structure and tz_dsttime member.
481 BOOL WINAPI SetTimeZoneInformation(
482 const LPTIME_ZONE_INFORMATION tzinfo) /* [in] The new time zone. */
484 struct timezone tz;
486 tz.tz_minuteswest = tzinfo->Bias;
487 #ifdef DST_NONE
488 tz.tz_dsttime = DST_NONE;
489 #else
490 tz.tz_dsttime = 0;
491 #endif
492 return !settimeofday(NULL, &tz);
496 /***********************************************************************
497 * SystemTimeToTzSpecificLocalTime (KERNEL32.@)
499 * Converts the system time (utc) to the local time in the specified time zone.
501 * RETURNS
503 * Returns true when the local time was calculated.
505 * BUGS
507 * Does not handle daylight savings time adjustments correctly.
509 BOOL WINAPI SystemTimeToTzSpecificLocalTime(
510 LPTIME_ZONE_INFORMATION lpTimeZoneInformation, /* [in] The desired time zone. */
511 LPSYSTEMTIME lpUniversalTime, /* [in] The utc time to base local time on. */
512 LPSYSTEMTIME lpLocalTime) /* [out] The local time in the time zone. */
514 FIXME(":stub\n");
515 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
516 return FALSE;
520 /***********************************************************************
521 * GetSystemTimeAsFileTime (KERNEL32.@)
523 * Fills in a file time structure with the current time in UTC format.
525 VOID WINAPI GetSystemTimeAsFileTime(
526 LPFILETIME time) /* [out] The file time struct to be filled with the system time. */
528 NtQuerySystemTime( (LARGE_INTEGER *)time );
532 /*********************************************************************
533 * TIME_ClockTimeToFileTime (olorin@fandra.org, 20-Sep-1998)
535 * Used by GetProcessTimes to convert clock_t into FILETIME.
537 * Differences to UnixTimeToFileTime:
538 * 1) Divided by CLK_TCK
539 * 2) Time is relative. There is no 'starting date', so there is
540 * no need in offset correction, like in UnixTimeToFileTime
542 static void TIME_ClockTimeToFileTime(clock_t unix_time, LPFILETIME filetime)
544 ULONGLONG secs = RtlEnlargedUnsignedMultiply( unix_time, 10000000 );
545 secs = RtlExtendedLargeIntegerDivide( secs, CLK_TCK, NULL );
546 filetime->dwLowDateTime = (DWORD)secs;
547 filetime->dwHighDateTime = (DWORD)(secs >> 32);
550 /*********************************************************************
551 * GetProcessTimes (KERNEL32.@)
553 * Returns the user and kernel execution times of a process,
554 * along with the creation and exit times if known.
556 * olorin@fandra.org:
557 * Would be nice to subtract the cpu time, used by Wine at startup.
558 * Also, there is a need to separate times used by different applications.
560 * RETURNS
562 * Always returns true.
564 * BUGS
566 * lpCreationTime, lpExitTime are NOT INITIALIZED.
568 BOOL WINAPI GetProcessTimes(
569 HANDLE hprocess, /* [in] The process to be queried (obtained from PROCESS_QUERY_INFORMATION). */
570 LPFILETIME lpCreationTime, /* [out] The creation time of the process. */
571 LPFILETIME lpExitTime, /* [out] The exit time of the process if exited. */
572 LPFILETIME lpKernelTime, /* [out] The time spent in kernal routines in 100's of nanoseconds. */
573 LPFILETIME lpUserTime) /* [out] The time spent in user routines in 100's of nanoseconds. */
575 struct tms tms;
577 times(&tms);
578 TIME_ClockTimeToFileTime(tms.tms_utime,lpUserTime);
579 TIME_ClockTimeToFileTime(tms.tms_stime,lpKernelTime);
580 return TRUE;
583 /*********************************************************************
584 * GetCalendarInfoA (KERNEL32.@)
587 int WINAPI GetCalendarInfoA(LCID Locale, CALID Calendar, CALTYPE CalType,
588 LPSTR lpCalData, int cchData, LPDWORD lpValue)
590 int ret;
591 LPWSTR lpCalDataW = NULL;
593 FIXME("(%08lx,%08lx,%08lx,%p,%d,%p): quarter-stub\n",
594 Locale, Calendar, CalType, lpCalData, cchData, lpValue);
595 /* FIXME: Should verify if Locale is allowable in ANSI, as per MSDN */
597 if(cchData)
598 if(!(lpCalDataW = HeapAlloc(GetProcessHeap(), 0, cchData*sizeof(WCHAR)))) return 0;
600 ret = GetCalendarInfoW(Locale, Calendar, CalType, lpCalDataW, cchData, lpValue);
601 if(ret && lpCalDataW && lpCalData)
602 WideCharToMultiByte(CP_ACP, 0, lpCalDataW, cchData, lpCalData, cchData, NULL, NULL);
603 if(lpCalDataW)
604 HeapFree(GetProcessHeap(), 0, lpCalDataW);
606 return ret;
609 /*********************************************************************
610 * GetCalendarInfoW (KERNEL32.@)
613 int WINAPI GetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType,
614 LPWSTR lpCalData, int cchData, LPDWORD lpValue)
616 FIXME("(%08lx,%08lx,%08lx,%p,%d,%p): quarter-stub\n",
617 Locale, Calendar, CalType, lpCalData, cchData, lpValue);
619 if (CalType & CAL_NOUSEROVERRIDE)
620 FIXME("flag CAL_NOUSEROVERRIDE used, not fully implemented\n");
621 if (CalType & CAL_USE_CP_ACP)
622 FIXME("flag CAL_USE_CP_ACP used, not fully implemented\n");
624 if (CalType & CAL_RETURN_NUMBER) {
625 if (lpCalData != NULL)
626 WARN("lpCalData not NULL (%p) when it should!\n", lpCalData);
627 if (cchData != 0)
628 WARN("cchData not 0 (%d) when it should!\n", cchData);
629 } else {
630 if (lpValue != NULL)
631 WARN("lpValue not NULL (%p) when it should!\n", lpValue);
634 /* FIXME: No verification is made yet wrt Locale
635 * for the CALTYPES not requiring GetLocaleInfoA */
636 switch (CalType & ~(CAL_NOUSEROVERRIDE|CAL_RETURN_NUMBER|CAL_USE_CP_ACP)) {
637 case CAL_ICALINTVALUE:
638 FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
639 return E_FAIL;
640 case CAL_SCALNAME:
641 FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
642 return E_FAIL;
643 case CAL_IYEAROFFSETRANGE:
644 FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
645 return E_FAIL;
646 case CAL_SERASTRING:
647 FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
648 return E_FAIL;
649 case CAL_SSHORTDATE:
650 return GetLocaleInfoW(Locale, LOCALE_SSHORTDATE, lpCalData, cchData);
651 case CAL_SLONGDATE:
652 return GetLocaleInfoW(Locale, LOCALE_SLONGDATE, lpCalData, cchData);
653 case CAL_SDAYNAME1:
654 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME1, lpCalData, cchData);
655 case CAL_SDAYNAME2:
656 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME2, lpCalData, cchData);
657 case CAL_SDAYNAME3:
658 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME3, lpCalData, cchData);
659 case CAL_SDAYNAME4:
660 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME4, lpCalData, cchData);
661 case CAL_SDAYNAME5:
662 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME5, lpCalData, cchData);
663 case CAL_SDAYNAME6:
664 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME6, lpCalData, cchData);
665 case CAL_SDAYNAME7:
666 return GetLocaleInfoW(Locale, LOCALE_SDAYNAME7, lpCalData, cchData);
667 case CAL_SABBREVDAYNAME1:
668 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME1, lpCalData, cchData);
669 case CAL_SABBREVDAYNAME2:
670 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME2, lpCalData, cchData);
671 case CAL_SABBREVDAYNAME3:
672 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME3, lpCalData, cchData);
673 case CAL_SABBREVDAYNAME4:
674 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME4, lpCalData, cchData);
675 case CAL_SABBREVDAYNAME5:
676 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME5, lpCalData, cchData);
677 case CAL_SABBREVDAYNAME6:
678 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME6, lpCalData, cchData);
679 case CAL_SABBREVDAYNAME7:
680 return GetLocaleInfoW(Locale, LOCALE_SABBREVDAYNAME7, lpCalData, cchData);
681 case CAL_SMONTHNAME1:
682 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME1, lpCalData, cchData);
683 case CAL_SMONTHNAME2:
684 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME2, lpCalData, cchData);
685 case CAL_SMONTHNAME3:
686 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME3, lpCalData, cchData);
687 case CAL_SMONTHNAME4:
688 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME4, lpCalData, cchData);
689 case CAL_SMONTHNAME5:
690 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME5, lpCalData, cchData);
691 case CAL_SMONTHNAME6:
692 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME6, lpCalData, cchData);
693 case CAL_SMONTHNAME7:
694 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME7, lpCalData, cchData);
695 case CAL_SMONTHNAME8:
696 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME8, lpCalData, cchData);
697 case CAL_SMONTHNAME9:
698 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME9, lpCalData, cchData);
699 case CAL_SMONTHNAME10:
700 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME10, lpCalData, cchData);
701 case CAL_SMONTHNAME11:
702 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME11, lpCalData, cchData);
703 case CAL_SMONTHNAME12:
704 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME12, lpCalData, cchData);
705 case CAL_SMONTHNAME13:
706 return GetLocaleInfoW(Locale, LOCALE_SMONTHNAME13, lpCalData, cchData);
707 case CAL_SABBREVMONTHNAME1:
708 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME1, lpCalData, cchData);
709 case CAL_SABBREVMONTHNAME2:
710 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME2, lpCalData, cchData);
711 case CAL_SABBREVMONTHNAME3:
712 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME3, lpCalData, cchData);
713 case CAL_SABBREVMONTHNAME4:
714 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME4, lpCalData, cchData);
715 case CAL_SABBREVMONTHNAME5:
716 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME5, lpCalData, cchData);
717 case CAL_SABBREVMONTHNAME6:
718 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME6, lpCalData, cchData);
719 case CAL_SABBREVMONTHNAME7:
720 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME7, lpCalData, cchData);
721 case CAL_SABBREVMONTHNAME8:
722 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME8, lpCalData, cchData);
723 case CAL_SABBREVMONTHNAME9:
724 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME9, lpCalData, cchData);
725 case CAL_SABBREVMONTHNAME10:
726 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME10, lpCalData, cchData);
727 case CAL_SABBREVMONTHNAME11:
728 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME11, lpCalData, cchData);
729 case CAL_SABBREVMONTHNAME12:
730 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME12, lpCalData, cchData);
731 case CAL_SABBREVMONTHNAME13:
732 return GetLocaleInfoW(Locale, LOCALE_SABBREVMONTHNAME13, lpCalData, cchData);
733 case CAL_SYEARMONTH:
734 return GetLocaleInfoW(Locale, LOCALE_SYEARMONTH, lpCalData, cchData);
735 case CAL_ITWODIGITYEARMAX:
736 FIXME("Unimplemented caltype %ld\n", CalType & 0xffff);
737 return E_FAIL;
738 default: MESSAGE("Unknown caltype %ld\n",CalType & 0xffff);
739 return E_FAIL;
741 return 0;
744 /*********************************************************************
745 * SetCalendarInfoA (KERNEL32.@)
748 int WINAPI SetCalendarInfoA(LCID Locale, CALID Calendar, CALTYPE CalType, LPCSTR lpCalData)
750 FIXME("(%08lx,%08lx,%08lx,%s): stub\n",
751 Locale, Calendar, CalType, debugstr_a(lpCalData));
752 return 0;
755 /*********************************************************************
756 * SetCalendarInfoW (KERNEL32.@)
759 int WINAPI SetCalendarInfoW(LCID Locale, CALID Calendar, CALTYPE CalType, LPCWSTR lpCalData)
761 FIXME("(%08lx,%08lx,%08lx,%s): stub\n",
762 Locale, Calendar, CalType, debugstr_w(lpCalData));
763 return 0;