Fixed some issues found by winapi_check.
[wine] / include / msvcrt / sys / utime.h
1 /*
2  * Path and directory definitions
3  *
4  * Copyright 2000 Francois Gouget.
5  */
6 #ifndef __WINE_SYS_UTIME_H
7 #define __WINE_SYS_UTIME_H
8
9 #include "winnt.h"
10 #include "msvcrt/sys/types.h"      /* For time_t */
11
12
13 struct _utimbuf
14 {
15     MSVCRT(time_t) actime;
16     MSVCRT(time_t) modtime;
17 };
18
19
20 #ifdef __cplusplus
21 extern "C" {
22 #endif
23
24 int         _futime(int,struct _utimbuf*);
25 int         _utime(const char*,struct _utimbuf*);
26
27 int         _wutime(const WCHAR*,struct _utimbuf*);
28
29 #ifdef __cplusplus
30 }
31 #endif
32
33
34 #ifndef USE_MSVCRT_PREFIX
35 #define utimbuf _utimbuf
36
37 #define utime _utime
38 #endif /* USE_MSVCRT_PREFIX */
39
40 #endif /* __WINE_SYS_UTIME_H */