OSDN Git Service

_USE_32BIT_TIME_T resolution and prepare for release.
[mingw/mingw-org-wsl.git] / include / sys / timeb.h
1 /**
2  * @file timeb.h
3  * @copy 2012 MinGW.org project
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  * 
12  * The above copyright notice and this permission notice (including the next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * Software.
15  * 
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _TIMEB_H_
25 #define _TIMEB_H_
26 #pragma GCC system_header
27 #include <_mingw.h>
28
29 /*
30  * Support for the UNIX System V ftime system call.
31  */
32
33 #include <sys/types.h>
34
35 #ifndef RC_INVOKED
36
37 /*
38  * TODO: Structure not tested.
39  */
40 struct _timeb
41 {
42         time_t  time;
43         short   millitm;
44         short   timezone;
45         short   dstflag;
46 };
47
48 /*
49  * TODO: Structure not tested.
50  */
51 struct __timeb32
52 {
53         __time32_t      time;
54         short   millitm;
55         short   timezone;
56         short   dstflag;
57 };
58
59 #ifndef _NO_OLDNAMES
60 /*
61  * TODO: Structure not tested.
62  */
63 struct timeb
64 {
65         time_t  time;
66         short   millitm;
67         short   timezone;
68         short   dstflag;
69 };
70 #endif
71
72 #ifdef  __cplusplus
73 extern "C" {
74 #endif
75
76 /* TODO: Not tested. */
77 _CRTIMP void __cdecl __MINGW_NOTHROW    _ftime (struct _timeb*);
78
79 #ifndef _NO_OLDNAMES
80 _CRTIMP void __cdecl __MINGW_NOTHROW    ftime (struct timeb*);
81 #endif  /* Not _NO_OLDNAMES */
82
83 /* This requires newer versions of msvcrt.dll (6.10 or higher).  */ 
84 struct __timeb64
85 {
86   __time64_t time;
87   short millitm;
88   short timezone;
89   short dstflag;
90 };
91
92 _CRTIMP void __cdecl __MINGW_NOTHROW    _ftime64 (struct __timeb64*);
93
94 _CRTIMP void __cdecl __MINGW_NOTHROW    _ftime32 (struct __timeb32*);
95
96 #if defined(_USE_32BIT_TIME_T) && defined(_HAVE_32BIT_TIME_T)
97 _CRTALIAS void __cdecl __MINGW_NOTHROW  _ftime (struct _timeb* _v) { return(_ftime32 ((struct __timeb32*)_v)); }
98 #else
99
100 _CRTALIAS void __cdecl __MINGW_NOTHROW  _ftime (struct _timeb* _v) { return(_ftime64 ((struct __timeb64*)_v)); }
101 #endif
102
103 #ifdef  __cplusplus
104 }
105 #endif
106
107 #endif  /* Not RC_INVOKED */
108
109 #endif  /* Not _TIMEB_H_ */