1 /*
2 * Path and directory 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_SYS_UTIME_H
21 #define __WINE_SYS_UTIME_H
22 #ifndef __WINE_USE_MSVCRT
23 #define __WINE_USE_MSVCRT
24 #endif
25
26 #include <pshpack8.h>
27
28 #ifndef _WCHAR_T_DEFINED
29 #define _WCHAR_T_DEFINED
30 #ifndef __cplusplus
31 typedef unsigned short wchar_t;
32 #endif
33 #endif
34
35 #ifndef _TIME_T_DEFINED
36 typedef long time_t;
37 #define _TIME_T_DEFINED
38 #endif
39
40 #ifndef _UTIMBUF_DEFINED
41 #define _UTIMBUF_DEFINED
42 struct _utimbuf
43 {
44 time_t actime;
45 time_t modtime;
46 };
47 #endif /* _UTIMBUF_DEFINED */
48
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
52
53 int _futime(int,struct _utimbuf*);
54 int _utime(const char*,struct _utimbuf*);
55
56 int _wutime(const wchar_t*,struct _utimbuf*);
57
58 #ifdef __cplusplus
59 }
60 #endif
61
62
63 #define utimbuf _utimbuf
64
65 static inline int utime(const char* path, struct _utimbuf* buf) { return _utime(path, buf); }
66
67 #include <poppack.h>
68
69 #endif /* __WINE_SYS_UTIME_H */
70
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.