wininet: Trace the cache file entry's local file name rather than the passed-in cache...
[wine/multimedia.git] / include / msvcrt / sys / utime.h
blob65a855ce64914395e3f1f14ab4f52c49fa427a89
1 /*
2 * Path and directory 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_SYS_UTIME_H
21 #define __WINE_SYS_UTIME_H
22 #ifndef __WINE_USE_MSVCRT
23 #define __WINE_USE_MSVCRT
24 #endif
26 #include <pshpack8.h>
28 #ifndef _WCHAR_T_DEFINED
29 #define _WCHAR_T_DEFINED
30 #ifndef __cplusplus
31 typedef unsigned short wchar_t;
32 #endif
33 #endif
35 #ifndef _TIME_T_DEFINED
36 typedef long time_t;
37 #define _TIME_T_DEFINED
38 #endif
40 #ifndef _UTIMBUF_DEFINED
41 #define _UTIMBUF_DEFINED
42 struct _utimbuf
44 time_t actime;
45 time_t modtime;
47 #endif /* _UTIMBUF_DEFINED */
49 #ifdef __cplusplus
50 extern "C" {
51 #endif
53 int _futime(int,struct _utimbuf*);
54 int _utime(const char*,struct _utimbuf*);
56 int _wutime(const wchar_t*,struct _utimbuf*);
58 #ifdef __cplusplus
60 #endif
63 #define utimbuf _utimbuf
65 static inline int utime(const char* path, struct _utimbuf* buf) { return _utime(path, buf); }
67 #include <poppack.h>
69 #endif /* __WINE_SYS_UTIME_H */