include: Add the msvcrt/crtdefs.h header and include it where needed.
[wine/wine64.git] / include / msvcrt / time.h
blob10446227e7f097d3ad697cb9a9bc23a554e4427e
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
23 #include <crtdefs.h>
25 #include <pshpack8.h>
27 #ifndef _CLOCK_T_DEFINED
28 typedef long clock_t;
29 #define _CLOCK_T_DEFINED
30 #endif
32 #ifndef NULL
33 #ifdef __cplusplus
34 #define NULL 0
35 #else
36 #define NULL ((void *)0)
37 #endif
38 #endif
40 #ifndef CLOCKS_PER_SEC
41 #define CLOCKS_PER_SEC 1000
42 #endif
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;
57 #endif /* _TM_DEFINED */
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
63 #define _daylight (*__p__daylight())
64 #define _dstbias (*__p__dstbias())
65 #define _timezone (*__p__timezone())
66 #define _tzname (__p__tzname())
68 int *__p__daylight(void);
69 long *__p__dstbias(void);
70 long *__p__timezone(void);
71 char **__p__tzname(void);
73 unsigned _getsystime(struct tm*);
74 unsigned _setsystime(struct tm*,unsigned);
75 char* _strdate(char*);
76 char* _strtime(char*);
77 void _tzset(void);
79 char* asctime(const struct tm*);
80 clock_t clock(void);
81 char* ctime(const time_t*);
82 double difftime(time_t,time_t);
83 struct tm* gmtime(const time_t*);
84 struct tm* localtime(const time_t*);
85 time_t mktime(struct tm*);
86 size_t strftime(char*,size_t,const char*,const struct tm*);
87 time_t time(time_t*);
89 #ifndef _WTIME_DEFINED
90 #define _WTIME_DEFINED
91 wchar_t* _wasctime(const struct tm*);
92 size_t wcsftime(wchar_t*,size_t,const wchar_t*,const struct tm*);
93 wchar_t*_wctime(const time_t*);
94 wchar_t*_wstrdate(wchar_t*);
95 wchar_t*_wstrtime(wchar_t*);
96 #endif /* _WTIME_DEFINED */
98 #ifdef __cplusplus
100 #endif
102 #include <poppack.h>
104 #endif /* __WINE_TIME_H */