Fix compilation errors on FreeBSD.
[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 #define __WINE_USE_MSVCRT
9
10 #include "winnt.h"
11 #include "msvcrt/sys/types.h"      /* For time_t */
12
13
14 struct _utimbuf
15 {
16     MSVCRT(time_t) actime;
17     MSVCRT(time_t) modtime;
18 };
19
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25 int         _futime(int,struct _utimbuf*);
26 int         _utime(const char*,struct _utimbuf*);
27
28 int         _wutime(const WCHAR*,struct _utimbuf*);
29
30 #ifdef __cplusplus
31 }
32 #endif
33
34
35 #ifndef USE_MSVCRT_PREFIX
36 #define utimbuf _utimbuf
37
38 #define utime _utime
39 #endif /* USE_MSVCRT_PREFIX */
40
41 #endif /* __WINE_SYS_UTIME_H */