Ignore:
Timestamp:
Jan 6, 2003, 2:24:23 PM (23 years ago)
Author:
sandervl
Message:

PF: header updates

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/win/msvcrt/sys/utime.h

    r8207 r9631  
    2222#define __WINE_USE_MSVCRT
    2323
    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
    2631
     32#ifndef MSVCRT_WCHAR_T_DEFINED
     33#define MSVCRT_WCHAR_T_DEFINED
     34#ifndef __cplusplus
     35typedef unsigned short MSVCRT(wchar_t);
     36#endif
     37#endif
    2738
     39#ifndef MSVCRT_TIME_T_DEFINED
     40typedef long MSVCRT(time_t);
     41#define MSVCRT_TIME_T_DEFINED
     42#endif
     43
     44#ifndef MSVCRT_UTIMBUF_DEFINED
     45#define MSVCRT_UTIMBUF_DEFINED
    2846struct _utimbuf
    2947{
     
    3149    MSVCRT(time_t) modtime;
    3250};
    33 
     51#endif /* MSVCRT_UTIMBUF_DEFINED */
    3452
    3553#ifdef __cplusplus
     
    4058int         _utime(const char*,struct _utimbuf*);
    4159
    42 int         _wutime(const WCHAR*,struct _utimbuf*);
     60int         _wutime(const MSVCRT(wchar_t)*,struct _utimbuf*);
    4361
    4462#ifdef __cplusplus
Note: See TracChangeset for help on using the changeset viewer.