comctl32: A couple fixes for tab icon offsets.
[wine] / include / msvcrt / sys / utime.h
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  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 #ifndef _WCHAR_T_DEFINED
27 #define _WCHAR_T_DEFINED
28 #ifndef __cplusplus
29 typedef unsigned short wchar_t;
30 #endif
31 #endif
32
33 #ifndef _TIME_T_DEFINED
34 typedef long time_t;
35 #define _TIME_T_DEFINED
36 #endif
37
38 #ifndef _UTIMBUF_DEFINED
39 #define _UTIMBUF_DEFINED
40 struct _utimbuf
41 {
42     time_t actime;
43     time_t modtime;
44 };
45 #endif /* _UTIMBUF_DEFINED */
46
47 #ifdef __cplusplus
48 extern "C" {
49 #endif
50
51 int         _futime(int,struct _utimbuf*);
52 int         _utime(const char*,struct _utimbuf*);
53
54 int         _wutime(const wchar_t*,struct _utimbuf*);
55
56 #ifdef __cplusplus
57 }
58 #endif
59
60
61 #define utimbuf _utimbuf
62
63 static inline int utime(const char* path, struct _utimbuf* buf) { return _utime(path, buf); }
64
65 #endif /* __WINE_SYS_UTIME_H */