Added the DFCS_{HOT,TRANSPARENT} definitions.
[wine/gsoc_dplay.git] / dlls / msvcrt / time.c
blob38d2ec26c4856287292eddb72dea85e648255fad
1 /*
2 * msvcrt.dll date/time functions
4 * Copyright 1996,1998 Marcus Meissner
5 * Copyright 1996 Jukka Iivonen
6 * Copyright 1997,2000 Uwe Bonnes
7 * Copyright 2000 Jon Griffiths
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include <time.h>
25 #include <sys/times.h>
27 #include "msvcrt.h"
28 #include "msvcrt/sys/timeb.h"
29 #include "msvcrt/time.h"
32 #include "wine/debug.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
37 /* INTERNAL: Return formatted current time/date */
38 char* msvcrt_get_current_time(char* out, const char* format)
40 static const MSVCRT_time_t bad_time = (MSVCRT_time_t)-1;
41 time_t t;
42 struct tm *_tm = NULL;
43 char *retval = NULL;
45 if (time(&t) != bad_time && (_tm = localtime(&t)) &&
46 strftime(out,9,format,_tm) == 8)
47 retval = out;
48 return retval;
51 /**********************************************************************
52 * mktime (MSVCRT.@)
54 MSVCRT_time_t MSVCRT_mktime(struct MSVCRT_tm *t)
56 MSVCRT_time_t res;
57 struct tm tm;
59 tm.tm_sec = t->tm_sec;
60 tm.tm_min = t->tm_min;
61 tm.tm_hour = t->tm_hour;
62 tm.tm_mday = t->tm_mday;
63 tm.tm_mon = t->tm_mon;
64 tm.tm_year = t->tm_year;
65 tm.tm_isdst = t->tm_isdst;
66 res = mktime(&tm);
67 if (res != -1)
69 t->tm_sec = tm.tm_sec;
70 t->tm_min = tm.tm_min;
71 t->tm_hour = tm.tm_hour;
72 t->tm_mday = tm.tm_mday;
73 t->tm_mon = tm.tm_mon;
74 t->tm_year = tm.tm_year;
75 t->tm_isdst = tm.tm_isdst;
77 return res;
80 /**********************************************************************
81 * _strdate (MSVCRT.@)
83 char* _strdate(char* date)
85 return msvcrt_get_current_time(date,"%m/%d/%y");
88 /*********************************************************************
89 * _strtime (MSVCRT.@)
91 char* _strtime(char* date)
93 return msvcrt_get_current_time(date,"%H:%M:%S");
96 /*********************************************************************
97 * clock (MSVCRT.@)
99 MSVCRT_clock_t MSVCRT_clock(void)
101 struct tms alltimes;
102 clock_t res;
104 times(&alltimes);
105 res = alltimes.tms_utime + alltimes.tms_stime +
106 alltimes.tms_cutime + alltimes.tms_cstime;
107 /* FIXME: We need some symbolic representation for CLOCKS_PER_SEC,
108 * 10 holds only for Windows/Linux_i86)
110 return 10*res;
113 /*********************************************************************
114 * difftime (MSVCRT.@)
116 double MSVCRT_difftime(MSVCRT_time_t time1, MSVCRT_time_t time2)
118 return (double)(time1 - time2);
121 /*********************************************************************
122 * time (MSVCRT.@)
124 MSVCRT_time_t MSVCRT_time(MSVCRT_time_t* buf)
126 MSVCRT_time_t curtime = time(NULL);
127 return buf ? *buf = curtime : curtime;
130 /*********************************************************************
131 * _ftime (MSVCRT.@)
133 void _ftime(struct _timeb *buf)
135 buf->time = MSVCRT_time(NULL);
136 buf->millitm = 0; /* FIXME */
137 buf->timezone = 0;
138 buf->dstflag = 0;