Fix compilation errors on FreeBSD.
[wine] / include / msvcrt / sys / timeb.h
1 /*
2  * Path and directory definitions
3  *
4  * Copyright 2000 Francois Gouget.
5  */
6 #ifndef __WINE_SYS_TIMEB_H
7 #define __WINE_SYS_TIMEB_H
8 #define __WINE_USE_MSVCRT
9
10 #include "msvcrt/sys/types.h"      /* For time_t */
11
12
13 struct _timeb
14 {
15     MSVCRT(time_t) time;
16     unsigned short millitm;
17     short          timezone;
18     short          dstflag;
19 };
20
21
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
25
26 void        _ftime(struct _timeb*);
27
28 #ifdef __cplusplus
29 }
30 #endif
31
32
33 #ifndef USE_MSVCRT_PREFIX
34 #define timeb _timeb
35
36 #define ftime _ftime
37 #endif /* USE_MSVCRT_PREFIX */
38
39 #endif /* __WINE_SYS_TIMEB_H */