winhttp, wininet: Load i2d_X509 from libcrypto.so.
[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
23 #include <crtdefs.h>
24
25 #include <pshpack8.h>
26
27 #ifndef _CLOCK_T_DEFINED
28 typedef long clock_t;
29 #define _CLOCK_T_DEFINED
30 #endif
31
32 #ifndef NULL
33 #ifdef __cplusplus
34 #define NULL  0
35 #else
36 #define NULL  ((void *)0)
37 #endif
38 #endif
39
40 #ifndef CLOCKS_PER_SEC
41 #define CLOCKS_PER_SEC 1000
42 #endif
43
44 #ifndef _TM_DEFINED
45 #define _TM_DEFINED
46 struct tm {
47     int tm_sec;
48     int tm_min;
49     int tm_hour;
50     int tm_mday;
51     int tm_mon;
52     int tm_year;
53     int tm_wday;
54     int tm_yday;
55     int tm_isdst;
56 };
57 #endif /* _TM_DEFINED */
58
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
62
63 #ifdef __i386__
64 #define _daylight (*__p__daylight())
65 #define _dstbias (*__p__dstbias())
66 #define _timezone (*__p__timezone())
67 #define _tzname (__p__tzname())
68
69 int *   __cdecl __p__daylight(void);
70 long *  __cdecl __p__dstbias(void);
71 long *  __cdecl __p__timezone(void);
72 char ** __cdecl __p__tzname(void);
73 #else
74 extern int _daylight;
75 extern long _dstbias;
76 extern long _timezone;
77 extern char *_tzname;
78 #endif
79
80 unsigned    __cdecl _getsystime(struct tm*);
81 unsigned    __cdecl _setsystime(struct tm*,unsigned);
82 char*       __cdecl _strdate(char*);
83 char*       __cdecl _strtime(char*);
84 void        __cdecl _tzset(void);
85
86 char*       __cdecl asctime(const struct tm*);
87 clock_t     __cdecl clock(void);
88 char*       __cdecl ctime(const time_t*);
89 double      __cdecl difftime(time_t,time_t);
90 struct tm*  __cdecl gmtime(const time_t*);
91 struct tm*  __cdecl localtime(const time_t*);
92 time_t      __cdecl mktime(struct tm*);
93 size_t      __cdecl strftime(char*,size_t,const char*,const struct tm*);
94 time_t      __cdecl time(time_t*);
95
96 #ifndef _WTIME_DEFINED
97 #define _WTIME_DEFINED
98 wchar_t* __cdecl _wasctime(const struct tm*);
99 size_t   __cdecl wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
100 wchar_t* __cdecl _wctime(const time_t*);
101 wchar_t* __cdecl _wstrdate(wchar_t*);
102 wchar_t* __cdecl _wstrtime(wchar_t*);
103 #endif /* _WTIME_DEFINED */
104
105 #ifdef __cplusplus
106 }
107 #endif
108
109 #include <poppack.h>
110
111 #endif /* __WINE_TIME_H */