Changeset 9631 for trunk/include/win/msvcrt/sys/utime.h
- Timestamp:
- Jan 6, 2003, 2:24:23 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/msvcrt/sys/utime.h
r8207 r9631 22 22 #define __WINE_USE_MSVCRT 23 23 24 #include "winnt.h" 25 #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 26 31 32 #ifndef MSVCRT_WCHAR_T_DEFINED 33 #define MSVCRT_WCHAR_T_DEFINED 34 #ifndef __cplusplus 35 typedef unsigned short MSVCRT(wchar_t); 36 #endif 37 #endif 27 38 39 #ifndef MSVCRT_TIME_T_DEFINED 40 typedef long MSVCRT(time_t); 41 #define MSVCRT_TIME_T_DEFINED 42 #endif 43 44 #ifndef MSVCRT_UTIMBUF_DEFINED 45 #define MSVCRT_UTIMBUF_DEFINED 28 46 struct _utimbuf 29 47 { … … 31 49 MSVCRT(time_t) modtime; 32 50 }; 33 51 #endif /* MSVCRT_UTIMBUF_DEFINED */ 34 52 35 53 #ifdef __cplusplus … … 40 58 int _utime(const char*,struct _utimbuf*); 41 59 42 int _wutime(const WCHAR*,struct _utimbuf*);60 int _wutime(const MSVCRT(wchar_t)*,struct _utimbuf*); 43 61 44 62 #ifdef __cplusplus
Note:
See TracChangeset
for help on using the changeset viewer.