configure: Don't define _WIN64 on the command line to avoid trouble with system headers.
[wine] / include / msvcrt / time.h
1 /*
2  * Time definitions
3  *
4  * Copyright 2000 Francois Gouget.
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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20 #ifndef __WINE_TIME_H
21 #define __WINE_TIME_H
22 #ifndef __WINE_USE_MSVCRT
23 #define __WINE_USE_MSVCRT
24 #endif
25
26 #ifndef _WCHAR_T_DEFINED
27 #define _WCHAR_T_DEFINED
28 #ifndef __cplusplus
29 typedef unsigned short wchar_t;
30 #endif
31 #endif
32
33 #if !defined(_MSC_VER) && !defined(__int64)
34 #define __int64 long long
35 #endif
36
37 #if defined(__x86_64__) && !defined(_WIN64)
38 #define _WIN64
39 #endif
40
41 #ifndef _SIZE_T_DEFINED
42 #ifdef _WIN64
43 typedef unsigned __int64 size_t;
44 #else
45 typedef unsigned int size_t;
46 #endif
47 #define _SIZE_T_DEFINED
48 #endif
49
50 #ifndef _TIME_T_DEFINED
51 typedef long time_t;
52 #define _TIME_T_DEFINED
53 #endif
54
55 #ifndef _CLOCK_T_DEFINED
56 typedef long clock_t;
57 #define _CLOCK_T_DEFINED
58 #endif
59
60 #ifndef NULL
61 #ifdef __cplusplus
62 #define NULL  0
63 #else
64 #define NULL  ((void *)0)
65 #endif
66 #endif
67
68 #ifndef CLOCKS_PER_SEC
69 #define CLOCKS_PER_SEC 1000
70 #endif
71
72 #ifndef _TM_DEFINED
73 #define _TM_DEFINED
74 struct tm {
75     int tm_sec;
76     int tm_min;
77     int tm_hour;
78     int tm_mday;
79     int tm_mon;
80     int tm_year;
81     int tm_wday;
82     int tm_yday;
83     int tm_isdst;
84 };
85 #endif /* _TM_DEFINED */
86
87 #ifdef __cplusplus
88 extern "C" {
89 #endif
90
91 #define _daylight (*__p__daylight())
92 #define _dstbias (*__p__dstbias())
93 #define _timezone (*__p__timezone())
94 #define _tzname (__p__tzname())
95
96 int *__p__daylight(void);
97 long *__p__dstbias(void);
98 long *__p__timezone(void);
99 char **__p__tzname(void);
100
101 unsigned    _getsystime(struct tm*);
102 unsigned    _setsystime(struct tm*,unsigned);
103 char*       _strdate(char*);
104 char*       _strtime(char*);
105 void        _tzset(void);
106
107 char*       asctime(const struct tm*);
108 clock_t clock(void);
109 char*       ctime(const time_t*);
110 double      difftime(time_t,time_t);
111 struct tm* gmtime(const time_t*);
112 struct tm* localtime(const time_t*);
113 time_t mktime(struct tm*);
114 size_t      strftime(char*,size_t,const char*,const struct tm*);
115 time_t time(time_t*);
116
117 #ifndef _WTIME_DEFINED
118 #define _WTIME_DEFINED
119 wchar_t* _wasctime(const struct tm*);
120 size_t  wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
121 wchar_t*_wctime(const time_t*);
122 wchar_t*_wstrdate(wchar_t*);
123 wchar_t*_wstrtime(wchar_t*);
124 #endif /* _WTIME_DEFINED */
125
126 #ifdef __cplusplus
127 }
128 #endif
129
130 #endif /* __WINE_TIME_H */