OSDN Git Service

Manual resolution for LICENSE for files already containing a file
[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
27 /*
28  * Support for the UNIX System V ftime system call.
29  */
30
31 /* All the headers include this file. */
32 #include <_mingw.h>
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 #if __MSVCRT_VERSION__ >= 0x0800
49 /*
50  * TODO: Structure not tested.
51  */
52 struct __timeb32
53 {
54         __time32_t      time;
55         short   millitm;
56         short   timezone;
57         short   dstflag;
58 };
59 #endif /* __MSVCRT_VERSION__ >= 0x0800 */
60
61 #ifndef _NO_OLDNAMES
62 /*
63  * TODO: Structure not tested.
64  */
65 struct timeb
66 {
67         time_t  time;
68         short   millitm;
69         short   timezone;
70         short   dstflag;
71 };
72 #endif
73
74 #ifdef  __cplusplus
75 extern "C" {
76 #endif
77
78 /* TODO: Not tested. */
79 _CRTIMP void __cdecl __MINGW_NOTHROW    _ftime (struct _timeb*);
80
81 #ifndef _NO_OLDNAMES
82 /* FIXME for __MSVCRT_VERSION__ >= 0x0800 */
83 _CRTIMP void __cdecl __MINGW_NOTHROW    ftime (struct timeb*);
84 #endif  /* Not _NO_OLDNAMES */
85
86 /* This requires newer versions of msvcrt.dll (6.10 or higher).  */ 
87 #if __MSVCRT_VERSION__ >= 0x0601
88 struct __timeb64
89 {
90   __time64_t time;
91   short millitm;
92   short timezone;
93   short dstflag;
94 };
95
96 _CRTIMP void __cdecl __MINGW_NOTHROW    _ftime64 (struct __timeb64*);
97 #endif /* __MSVCRT_VERSION__ >= 0x0601 */
98
99 #if __MSVCRT_VERSION__ >= 0x0800
100 _CRTIMP void __cdecl __MINGW_NOTHROW    _ftime32 (struct __timeb32*);
101 #ifndef _USE_32BIT_TIME_T
102 _CRTALIAS void __cdecl __MINGW_NOTHROW  _ftime (struct _timeb* _v) { return(_ftime64 ((struct __timeb64*)_v)); }
103 #else
104 _CRTALIAS void __cdecl __MINGW_NOTHROW  _ftime (struct _timeb* _v) { return(_ftime32 ((struct __timeb32*)_v)); }
105 #endif
106 #endif /* __MSVCRT_VERSION__ >= 0x0800 */
107
108 #ifdef  __cplusplus
109 }
110 #endif
111
112 #endif  /* Not RC_INVOKED */
113
114 #endif  /* Not _TIMEB_H_ */