Commit WIP. Part 1 of ??
[reactos.git] / reactos / include / crt / sys / utime.h
1 /**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
6 #ifndef _INC_UTIME
7 #define _INC_UTIME
8
9 #ifndef _WIN32
10 #error Only Win32 target is supported!
11 #endif
12
13 #include <_mingw.h>
14
15 #pragma pack(push,_CRT_PACKING)
16
17 #ifdef __cplusplus
18 extern "C" {
19 #endif
20
21 #ifndef _CRTIMP
22 #define _CRTIMP __declspec(dllimport)
23 #endif
24
25 #ifndef _WCHAR_T_DEFINED
26 typedef unsigned short wchar_t;
27 #define _WCHAR_T_DEFINED
28 #endif
29
30 #ifdef _USE_32BIT_TIME_T
31 #ifdef _WIN64
32 #undef _USE_32BIT_TIME_T
33 #endif
34 #else
35 #if _INTEGRAL_MAX_BITS < 64
36 #define _USE_32BIT_TIME_T
37 #endif
38 #endif
39
40 #ifndef _TIME32_T_DEFINED
41 #define _TIME32_T_DEFINED
42 typedef long __time32_t;
43 #endif
44
45 #ifndef _TIME64_T_DEFINED
46 #define _TIME64_T_DEFINED
47 #if _INTEGRAL_MAX_BITS >= 64
48 typedef __int64 __time64_t;
49 #endif
50 #endif
51
52 #ifndef _TIME_T_DEFINED
53 #define _TIME_T_DEFINED
54 #ifdef _USE_32BIT_TIME_T
55 typedef __time32_t time_t;
56 #else
57 typedef __time64_t time_t;
58 #endif
59 #endif
60
61 #ifndef _UTIMBUF_DEFINED
62 #define _UTIMBUF_DEFINED
63
64 struct _utimbuf {
65 time_t actime;
66 time_t modtime;
67 };
68
69 struct __utimbuf32 {
70 __time32_t actime;
71 __time32_t modtime;
72 };
73
74 struct __utimbuf64 {
75 __time64_t actime;
76 __time64_t modtime;
77 };
78
79 #ifndef NO_OLDNAMES
80 struct utimbuf {
81 time_t actime;
82 time_t modtime;
83 };
84
85 struct utimbuf32 {
86 __time32_t actime;
87 __time32_t modtime;
88 };
89 #endif
90 #endif
91
92 _CRTIMP int __cdecl _utime32(const char *_Filename,struct __utimbuf32 *_Time);
93 _CRTIMP int __cdecl _futime32(int _FileDes,struct __utimbuf32 *_Time);
94 _CRTIMP int __cdecl _wutime32(const wchar_t *_Filename,struct __utimbuf32 *_Time);
95 _CRTIMP int __cdecl _utime64(const char *_Filename,struct __utimbuf64 *_Time);
96 _CRTIMP int __cdecl _futime64(int _FileDes,struct __utimbuf64 *_Time);
97 _CRTIMP int __cdecl _wutime64(const wchar_t *_Filename,struct __utimbuf64 *_Time);
98
99 #ifndef RC_INVOKED
100 __CRT_INLINE int __cdecl _utime(const char *_Filename,struct _utimbuf *_Utimbuf) {
101 return _utime32(_Filename,(struct __utimbuf32 *)_Utimbuf);
102 }
103 __CRT_INLINE int __cdecl _futime(int _Desc,struct _utimbuf *_Utimbuf) {
104 return _futime32(_Desc,(struct __utimbuf32 *)_Utimbuf);
105 }
106 __CRT_INLINE int __cdecl _wutime(const wchar_t *_Filename,struct _utimbuf *_Utimbuf) {
107 return _wutime32(_Filename,(struct __utimbuf32 *)_Utimbuf);
108 }
109 #elif defined(_USE_64BIT_TIME_T)
110 __CRT_INLINE int __cdecl _utime(const char *_Filename,struct _utimbuf *_Utimbuf) {
111 return _utime64(_Filename,(struct __utimbuf64 *)_Utimbuf);
112 }
113 __CRT_INLINE int __cdecl _futime(int _Desc,struct _utimbuf *_Utimbuf) {
114 return _futime64(_Desc,(struct __utimbuf64 *)_Utimbuf);
115 }
116 __CRT_INLINE int __cdecl _wutime(const wchar_t *_Filename,struct _utimbuf *_Utimbuf) {
117 return _wutime64(_Filename,(struct __utimbuf64 *)_Utimbuf);
118 }
119
120 #ifndef NO_OLDNAMES
121 #ifndef _WIN64
122 __CRT_INLINE int __cdecl utime(const char *_Filename,struct utimbuf *_Utimbuf) {
123 return _utime32(_Filename,(struct __utimbuf32 *)_Utimbuf);
124 }
125 #else
126 __CRT_INLINE int __cdecl utime(const char *_Filename,struct utimbuf *_Utimbuf) {
127 return _utime64(_Filename,(struct __utimbuf64 *)_Utimbuf);
128 }
129 #endif
130 #endif
131 #endif
132
133 #ifdef __cplusplus
134 }
135 #endif
136
137 #pragma pack(pop)
138 #endif