Changeset 9631 for trunk/include/win/msvcrt/sys/timeb.h
- Timestamp:
- Jan 6, 2003, 2:24:23 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/msvcrt/sys/timeb.h
r8207 r9631 22 22 #define __WINE_USE_MSVCRT 23 23 24 #include "msvcrt/sys/types.h" /* For time_t */ 24 #ifndef MSVCRT 25 # ifdef USE_MSVCRT_PREFIX 26 # define MSVCRT(x) MSVCRT_##x 27 # else 28 # define MSVCRT(x) x 29 # endif 30 #endif 25 31 32 #ifndef MSVCRT_TIME_T_DEFINED 33 typedef long MSVCRT(time_t); 34 #define MSVCRT_TIME_T_DEFINED 35 #endif 26 36 37 #ifndef MSVCRT_TIMEB_DEFINED 38 #define MSVCRT_TIMEB_DEFINED 27 39 struct _timeb 28 40 { … … 32 44 short dstflag; 33 45 }; 46 #endif /* MSVCRT_TIMEB_DEFINED */ 34 47 35 48
Note:
See TracChangeset
for help on using the changeset viewer.