Don't return from overlapped ReadFile on EAGAIN and other non-fatal
[wine/gsoc_dplay.git] / include / msvcrt / sys / timeb.h
blobbeae8c756397683c2afd62c39cbb4a4e7489e81a
1 /*
2 * Path and directory definitions
4 * Copyright 2000 Francois Gouget.
5 */
6 #ifndef __WINE_SYS_TIMEB_H
7 #define __WINE_SYS_TIMEB_H
8 #define __WINE_USE_MSVCRT
10 #include "msvcrt/sys/types.h" /* For time_t */
13 struct _timeb
15 MSVCRT(time_t) time;
16 unsigned short millitm;
17 short timezone;
18 short dstflag;
22 #ifdef __cplusplus
23 extern "C" {
24 #endif
26 void _ftime(struct _timeb*);
28 #ifdef __cplusplus
30 #endif
33 #ifndef USE_MSVCRT_PREFIX
34 #define timeb _timeb
36 #define ftime _ftime
37 #endif /* USE_MSVCRT_PREFIX */
39 #endif /* __WINE_SYS_TIMEB_H */