Remove all stuff that is either already defined in crtdefs.h or doesn't belong in...
[reactos.git] / reactos / include / crt / time.h
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6 #ifndef _TIME_H_
7 #define _TIME_H_
8
9 #include <crtdefs.h>
10
11 #ifndef _WIN32
12 #error Only Win32 target is supported!
13 #endif
14
15 #pragma pack(push,_CRT_PACKING)
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 #ifndef _TIME32_T_DEFINED
22 #define _TIME32_T_DEFINED
23 typedef long __time32_t;
24 #endif
25
26 #ifndef _TIME64_T_DEFINED
27 #define _TIME64_T_DEFINED
28 #if _INTEGRAL_MAX_BITS >= 64
29 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
30 typedef int _time64_t __attribute__ ((mode (DI)));
31 #else
32 typedef __int64 __time64_t;
33 #endif
34 #endif
35 #endif
36
37 #ifndef _TIME_T_DEFINED
38 #define _TIME_T_DEFINED
39 #ifdef _USE_32BIT_TIME_T
40 typedef __time32_t time_t;
41 #else
42 typedef __time64_t time_t;
43 #endif
44 #endif
45
46 #ifndef _CLOCK_T_DEFINED
47 #define _CLOCK_T_DEFINED
48 typedef long clock_t;
49 #endif
50
51 #ifndef _SIZE_T_DEFINED
52 #define _SIZE_T_DEFINED
53 #undef size_t
54 #ifdef _WIN64
55 #if defined(__GNUC__) && defined(__STRICT_ANSI__)
56 typedef unsigned int size_t __attribute__ ((mode (DI)));
57 #else
58 typedef unsigned __int64 size_t;
59 #endif
60 #else
61 typedef unsigned int size_t;
62 #endif
63 #endif
64
65 #ifndef NULL
66 #ifdef __cplusplus
67 #define NULL 0
68 #else
69 #define NULL ((void *)0)
70 #endif
71 #endif
72
73 /*
74 #ifdef _USE_32BIT_TIME_T
75 #define _localtime32 localtime
76 #define _difftime32 difftime
77 #define _ctime32 ctime
78 #define _gmtime32 gmtime
79 #define _mktime32 mktime
80 #define _time32 time
81 #endif
82 */
83
84 #ifndef _TM_DEFINED
85 #define _TM_DEFINED
86 struct tm {
87 int tm_sec;
88 int tm_min;
89 int tm_hour;
90 int tm_mday;
91 int tm_mon;
92 int tm_year;
93 int tm_wday;
94 int tm_yday;
95 int tm_isdst;
96 };
97 #endif
98
99 #define CLOCKS_PER_SEC 1000
100
101 _CRTDATA(extern int _daylight);
102 _CRTDATA(extern long _dstbias);
103 _CRTDATA(extern long _timezone);
104 _CRTDATA(extern char * _tzname[2]);
105
106 _CRTIMP errno_t __cdecl _get_daylight(int *_Daylight);
107 _CRTIMP errno_t __cdecl _get_dstbias(long *_Daylight_savings_bias);
108 _CRTIMP errno_t __cdecl _get_timezone(long *_Timezone);
109 _CRTIMP errno_t __cdecl _get_tzname(size_t *_ReturnValue,char *_Buffer,size_t _SizeInBytes,int _Index);
110 char *__cdecl asctime(const struct tm *_Tm);
111 _CRTIMP char *__cdecl _ctime32(const __time32_t *_Time);
112 clock_t __cdecl clock(void);
113 _CRTIMP double __cdecl _difftime32(__time32_t _Time1,__time32_t _Time2);
114 _CRTIMP struct tm *__cdecl _gmtime32(const __time32_t *_Time);
115 _CRTIMP struct tm *__cdecl _localtime32(const __time32_t *_Time);
116 size_t __cdecl strftime(char *_Buf,size_t _SizeInBytes,const char *_Format,const struct tm *_Tm);
117 _CRTIMP size_t __cdecl _strftime_l(char *_Buf,size_t _Max_size,const char *_Format,const struct tm *_Tm,_locale_t _Locale);
118 _CRTIMP char *__cdecl _strdate(char *_Buffer);
119 _CRTIMP char *__cdecl _strtime(char *_Buffer);
120 _CRTIMP __time32_t __cdecl _time32(__time32_t *_Time);
121 _CRTIMP __time32_t __cdecl _mktime32(struct tm *_Tm);
122 _CRTIMP __time32_t __cdecl _mkgmtime32(struct tm *_Tm);
123 #if defined (_POSIX_) || defined(__GNUC__)
124 void __cdecl tzset(void);
125 #endif
126 _CRTIMP void __cdecl _tzset(void);
127
128 #if _INTEGRAL_MAX_BITS >= 64
129 double __cdecl _difftime64(__time64_t _Time1,__time64_t _Time2);
130 _CRTIMP char *__cdecl _ctime64(const __time64_t *_Time);
131 _CRTIMP struct tm *__cdecl _gmtime64(const __time64_t *_Time);
132 _CRTIMP struct tm *__cdecl _localtime64(const __time64_t *_Time);
133 _CRTIMP __time64_t __cdecl _mktime64(struct tm *_Tm);
134 _CRTIMP __time64_t __cdecl _mkgmtime64(struct tm *_Tm);
135 _CRTIMP __time64_t __cdecl _time64(__time64_t *_Time);
136 #endif
137 unsigned __cdecl _getsystime(struct tm *_Tm);
138 unsigned __cdecl _setsystime(struct tm *_Tm,unsigned _MilliSec);
139
140 #ifndef _WTIME_DEFINED
141 _CRTIMP wchar_t *__cdecl _wasctime(const struct tm *_Tm);
142 _CRTIMP wchar_t *__cdecl _wctime32(const __time32_t *_Time);
143 size_t __cdecl wcsftime(wchar_t *_Buf,size_t _SizeInWords,const wchar_t *_Format,const struct tm *_Tm);
144 _CRTIMP size_t __cdecl _wcsftime_l(wchar_t *_Buf,size_t _SizeInWords,const wchar_t *_Format,const struct tm *_Tm,_locale_t _Locale);
145 _CRTIMP wchar_t *__cdecl _wstrdate(wchar_t *_Buffer);
146 _CRTIMP wchar_t *__cdecl _wstrtime(wchar_t *_Buffer);
147 #if _INTEGRAL_MAX_BITS >= 64
148 _CRTIMP wchar_t *__cdecl _wctime64(const __time64_t *_Time);
149 #endif
150
151 #if !defined (RC_INVOKED) && !defined (_INC_WTIME_INL)
152 #define _INC_WTIME_INL
153 #ifdef _USE_32BIT_TIME_T
154 __CRT_INLINE wchar_t *__cdecl _wctime(const time_t *_Time) { return _wctime32(_Time); }
155 #else
156 __CRT_INLINE wchar_t *__cdecl _wctime(const time_t *_Time) { return _wctime64(_Time); }
157 #endif
158 #endif
159
160 #define _WTIME_DEFINED
161 #endif /* !_WTIME_DEFINED */
162
163 #ifndef RC_INVOKED
164 double __cdecl difftime(time_t _Time1,time_t _Time2);
165 char *__cdecl ctime(const time_t *_Time);
166 struct tm *__cdecl gmtime(const time_t *_Time);
167 struct tm *__cdecl localtime(const time_t *_Time);
168 struct tm *__cdecl localtime_r(const time_t *_Time,struct tm *);
169
170 _CRTIMP time_t __cdecl mktime(struct tm *_Tm);
171 _CRTIMP time_t __cdecl _mkgmtime(struct tm *_Tm);
172 _CRTIMP time_t __cdecl time(time_t *_Time);
173
174 #ifdef _USE_32BIT_TIME_T
175 #if 0
176 __CRT_INLINE double __cdecl difftime(time_t _Time1,time_t _Time2) { return _difftime32(_Time1,_Time2); }
177 __CRT_INLINE char *__cdecl ctime(const time_t *_Time) { return _ctime32(_Time); }
178 __CRT_INLINE struct tm *__cdecl gmtime(const time_t *_Time) { return _gmtime32(_Time); }
179 __CRT_INLINE struct tm *__cdecl localtime(const time_t *_Time) { return _localtime32(_Time); }
180 __CRT_INLINE time_t __cdecl mktime(struct tm *_Tm) { return _mktime32(_Tm); }
181 __CRT_INLINE time_t __cdecl _mkgmtime(struct tm *_Tm) { return _mkgmtime32(_Tm); }
182 __CRT_INLINE time_t __cdecl time(time_t *_Time) { return _time32(_Time); }
183 #endif
184 #else
185 __CRT_INLINE double __cdecl difftime(time_t _Time1,time_t _Time2) { return _difftime64(_Time1,_Time2); }
186 __CRT_INLINE char *__cdecl ctime(const time_t *_Time) { return _ctime64(_Time); }
187 __CRT_INLINE struct tm *__cdecl gmtime(const time_t *_Time) { return _gmtime64(_Time); }
188 __CRT_INLINE struct tm *__cdecl localtime(const time_t *_Time) { return _localtime64(_Time); }
189 __CRT_INLINE time_t __cdecl mktime(struct tm *_Tm) { return _mktime64(_Tm); }
190 __CRT_INLINE time_t __cdecl _mkgmtime(struct tm *_Tm) { return _mkgmtime64(_Tm); }
191 __CRT_INLINE time_t __cdecl time(time_t *_Time) { return _time64(_Time); }
192 #endif
193 #endif
194
195 #if !defined(NO_OLDNAMES) || defined(_POSIX)
196 #define CLK_TCK CLOCKS_PER_SEC
197
198 _CRTIMP extern int daylight;
199 _CRTIMP extern long timezone;
200 _CRTIMP extern char *tzname[2];
201 void __cdecl tzset(void);
202 #endif
203
204 #ifdef __cplusplus
205 }
206 #endif
207
208 #pragma pack(pop)
209
210 #include <sec_api/time_s.h>
211
212 #endif /* End _TIME_H_ */
213