winex11.drv: Move WGL extension code to winex11.drv.
[wine/testsucceed.git] / include / msvcrt / time.h
blobb2caa034cf940450ee4b10eb9487e49cf43957a4
1 /*
2 * Time definitions
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
20 #ifndef __WINE_TIME_H
21 #define __WINE_TIME_H
22 #ifndef __WINE_USE_MSVCRT
23 #define __WINE_USE_MSVCRT
24 #endif
26 #ifndef _WCHAR_T_DEFINED
27 #define _WCHAR_T_DEFINED
28 #ifndef __cplusplus
29 typedef unsigned short wchar_t;
30 #endif
31 #endif
33 #if !defined(_MSC_VER) && !defined(__int64)
34 #define __int64 long long
35 #endif
37 #ifndef _SIZE_T_DEFINED
38 #ifdef _WIN64
39 typedef unsigned __int64 size_t;
40 #else
41 typedef unsigned int size_t;
42 #endif
43 #define _SIZE_T_DEFINED
44 #endif
46 #ifndef _TIME_T_DEFINED
47 typedef long time_t;
48 #define _TIME_T_DEFINED
49 #endif
51 #ifndef _CLOCK_T_DEFINED
52 typedef long clock_t;
53 #define _CLOCK_T_DEFINED
54 #endif
56 #ifndef NULL
57 #ifdef __cplusplus
58 #define NULL 0
59 #else
60 #define NULL ((void *)0)
61 #endif
62 #endif
64 #ifndef CLOCKS_PER_SEC
65 #define CLOCKS_PER_SEC 1000
66 #endif
68 #ifndef _TM_DEFINED
69 #define _TM_DEFINED
70 struct tm {
71 int tm_sec;
72 int tm_min;
73 int tm_hour;
74 int tm_mday;
75 int tm_mon;
76 int tm_year;
77 int tm_wday;
78 int tm_yday;
79 int tm_isdst;
81 #endif /* _TM_DEFINED */
83 #ifdef __cplusplus
84 extern "C" {
85 #endif
87 #define _daylight (*__p__daylight())
88 #define _dstbias (*__p__dstbias())
89 #define _timezone (*__p__timezone())
90 #define _tzname (__p__tzname())
92 int *__p__daylight(void);
93 long *__p__dstbias(void);
94 long *__p__timezone(void);
95 char **__p__tzname(void);
97 unsigned _getsystime(struct tm*);
98 unsigned _setsystime(struct tm*,unsigned);
99 char* _strdate(char*);
100 char* _strtime(char*);
101 void _tzset(void);
103 char* asctime(const struct tm*);
104 clock_t clock(void);
105 char* ctime(const time_t*);
106 double difftime(time_t,time_t);
107 struct tm* gmtime(const time_t*);
108 struct tm* localtime(const time_t*);
109 time_t mktime(struct tm*);
110 size_t strftime(char*,size_t,const char*,const struct tm*);
111 time_t time(time_t*);
113 #ifndef _WTIME_DEFINED
114 #define _WTIME_DEFINED
115 wchar_t* _wasctime(const struct tm*);
116 size_t wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
117 wchar_t*_wctime(const time_t*);
118 wchar_t*_wstrdate(wchar_t*);
119 wchar_t*_wstrtime(wchar_t*);
120 #endif /* _WTIME_DEFINED */
122 #ifdef __cplusplus
124 #endif
126 #endif /* __WINE_TIME_H */