4 * Copyright 2000 Francois Gouget.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
27 #ifndef _CLOCK_T_DEFINED
28 typedef __msvcrt_long
clock_t;
29 #define _CLOCK_T_DEFINED
36 #define NULL ((void *)0)
40 #ifndef CLOCKS_PER_SEC
41 #define CLOCKS_PER_SEC 1000
57 #endif /* _TM_DEFINED */
64 #define _daylight (*__p__daylight())
65 #define _dstbias (*__p__dstbias())
66 #define _timezone (*__p__timezone())
67 #define _tzname (__p__tzname())
69 int * __cdecl
__p__daylight(void);
70 __msvcrt_long
* __cdecl
__p__dstbias(void);
71 __msvcrt_long
* __cdecl
__p__timezone(void);
72 char ** __cdecl
__p__tzname(void);
75 extern __msvcrt_long _dstbias
;
76 extern __msvcrt_long _timezone
;
80 #ifdef _USE_32BIT_TIME_T
81 #define _ctime32 ctime
82 #define _difftime32 difftime
83 #define _gmtime32 gmtime
84 #define _localtime32 localtime
85 #define _mktime32 mktime
89 unsigned __cdecl
_getsystime(struct tm
*);
90 unsigned __cdecl
_setsystime(struct tm
*,unsigned);
91 char* __cdecl
_strdate(char*);
92 char* __cdecl
_strtime(char*);
93 void __cdecl
_tzset(void);
95 char* __cdecl
asctime(const struct tm
*);
96 clock_t __cdecl
clock(void);
97 char* __cdecl
_ctime32(const __time32_t
*);
98 char* __cdecl
_ctime64(const __time64_t
*);
99 double __cdecl
_difftime32(__time32_t
,__time32_t
);
100 double __cdecl
_difftime64(__time64_t
,__time64_t
);
101 struct tm
* __cdecl
_gmtime32(const __time32_t
*);
102 struct tm
* __cdecl
_gmtime64(const __time64_t
*);
103 struct tm
* __cdecl
_localtime32(const __time32_t
*);
104 struct tm
* __cdecl
_localtime64(const __time64_t
*);
105 __time32_t __cdecl
_mktime32(struct tm
*);
106 __time64_t __cdecl
_mktime64(struct tm
*);
107 size_t __cdecl
strftime(char*,size_t,const char*,const struct tm
*);
108 __time32_t __cdecl
_time32(__time32_t
*);
109 __time64_t __cdecl
_time64(__time64_t
*);
111 #ifndef _USE_32BIT_TIME_T
112 static inline char* ctime(const time_t *t
) { return _ctime64(t
); }
113 static inline double difftime(time_t t1
, time_t t2
) { return _difftime64(t1
, t2
); }
114 static inline struct tm
* gmtime(const time_t *t
) { return _gmtime64(t
); }
115 static inline struct tm
* localtime(const time_t *t
) { return _localtime64(t
); }
116 static inline time_t mktime(struct tm
*tm
) { return _mktime64(tm
); }
117 static inline time_t time(time_t *t
) { return _time64(t
); }
120 #ifndef _WTIME_DEFINED
121 #define _WTIME_DEFINED
123 #ifdef _USE_32BIT_TIME_T
124 #define _wctime32 _wctime
127 wchar_t* __cdecl
_wasctime(const struct tm
*);
128 size_t __cdecl
wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm
*);
129 wchar_t* __cdecl
_wctime32(const __time32_t
*);
130 wchar_t* __cdecl
_wctime64(const __time64_t
*);
131 wchar_t* __cdecl
_wstrdate(wchar_t*);
132 wchar_t* __cdecl
_wstrtime(wchar_t*);
134 #ifndef _USE_32BIT_TIME_T
135 static inline wchar_t* _wctime(const time_t *t
) { return _wctime64(t
); }
138 #endif /* _WTIME_DEFINED */
146 #endif /* __WINE_TIME_H */