Fixed some issues found by winapi_check.
[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
9 #include "msvcrt/sys/types.h"      /* For time_t */
10
11
12 struct _timeb
13 {
14     MSVCRT(time_t) time;
15     unsigned short millitm;
16     short          timezone;
17     short          dstflag;
18 };
19
20
21 #ifdef __cplusplus
22 extern "C" {
23 #endif
24
25 void        _ftime(struct _timeb*);
26
27 #ifdef __cplusplus
28 }
29 #endif
30
31
32 #ifndef USE_MSVCRT_PREFIX
33 #define timeb _timeb
34
35 #define ftime _ftime
36 #endif /* USE_MSVCRT_PREFIX */
37
38 #endif /* __WINE_SYS_TIMEB_H */