wincrypt.h: Add new OID.
[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 #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
45
46 #ifndef _TIME_T_DEFINED
47 typedef long time_t;
48 #define _TIME_T_DEFINED
49 #endif
50
51 #ifndef _CLOCK_T_DEFINED
52 typedef long clock_t;
53 #define _CLOCK_T_DEFINED
54 #endif
55
56 #ifndef NULL
57 #ifdef __cplusplus
58 #define NULL  0
59 #else
60 #define NULL  ((void *)0)
61 #endif
62 #endif
63
64 #ifndef CLOCKS_PER_SEC
65 #define CLOCKS_PER_SEC 1000
66 #endif
67
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;
80 };
81 #endif /* _TM_DEFINED */
82
83 #ifdef __cplusplus
84 extern "C" {
85 #endif
86
87 #define _daylight (*__p__daylight())
88 #define _dstbias (*__p__dstbias())
89 #define _timezone (*__p__timezone())
90 #define _tzname (__p__tzname())
91
92 int *__p__daylight(void);
93 long *__p__dstbias(void);
94 long *__p__timezone(void);
95 char **__p__tzname(void);
96
97 unsigned    _getsystime(struct tm*);
98 unsigned    _setsystime(struct tm*,unsigned);
99 char*       _strdate(char*);
100 char*       _strtime(char*);
101 void        _tzset(void);
102
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*);
112
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 */
121
122 #ifdef __cplusplus
123 }
124 #endif
125
126 #endif /* __WINE_TIME_H */