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/stdlib.h

    r8207 r9631  
    2626#define _MAX_DRIVE          3
    2727#define _MAX_FNAME          256
     28
     29#ifndef _MAX_DIR
    2830#define _MAX_DIR            _MAX_FNAME
     31#endif
     32
     33#ifndef _MAX_EXT
    2934#define _MAX_EXT            _MAX_FNAME
     35#endif
     36
    3037#define _MAX_PATH           260
    3138#endif
     
    4350
    4451
     52#ifdef __min /* watcom stdlib.h defines this */
     53#undef __min
     54#endif
     55
     56#ifdef __max /* watcom stdlib.h defines this */
     57#undef __max
     58#endif
     59
    4560#define __max(a,b) (((a) > (b)) ? (a) : (b))
    4661#define __min(a,b) (((a) < (b)) ? (a) : (b))
     62
    4763#ifndef __cplusplus
    4864#define max(a,b)   (((a) > (b)) ? (a) : (b))
     
    167183WCHAR*      _ui64tow(unsigned __int64,WCHAR*,int);
    168184WCHAR*      _ultow(unsigned long,WCHAR*,int);
    169 WCHAR*      _wfullpath(WCHAR*,const WCHAR*,size_t);
     185WCHAR*      _wfullpath(WCHAR*,const WCHAR*,MSVCRT(size_t));
    170186WCHAR*      _wgetenv(const WCHAR*);
    171187void        _wmakepath(WCHAR*,const WCHAR*,const WCHAR*,const WCHAR*,const WCHAR*);
Note: See TracChangeset for help on using the changeset viewer.