Changeset 9631 for trunk/include/win/msvcrt/stdlib.h
- Timestamp:
- Jan 6, 2003, 2:24:23 PM (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/win/msvcrt/stdlib.h
r8207 r9631 26 26 #define _MAX_DRIVE 3 27 27 #define _MAX_FNAME 256 28 29 #ifndef _MAX_DIR 28 30 #define _MAX_DIR _MAX_FNAME 31 #endif 32 33 #ifndef _MAX_EXT 29 34 #define _MAX_EXT _MAX_FNAME 35 #endif 36 30 37 #define _MAX_PATH 260 31 38 #endif … … 43 50 44 51 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 45 60 #define __max(a,b) (((a) > (b)) ? (a) : (b)) 46 61 #define __min(a,b) (((a) < (b)) ? (a) : (b)) 62 47 63 #ifndef __cplusplus 48 64 #define max(a,b) (((a) > (b)) ? (a) : (b)) … … 167 183 WCHAR* _ui64tow(unsigned __int64,WCHAR*,int); 168 184 WCHAR* _ultow(unsigned long,WCHAR*,int); 169 WCHAR* _wfullpath(WCHAR*,const WCHAR*, size_t);185 WCHAR* _wfullpath(WCHAR*,const WCHAR*,MSVCRT(size_t)); 170 186 WCHAR* _wgetenv(const WCHAR*); 171 187 void _wmakepath(WCHAR*,const WCHAR*,const WCHAR*,const WCHAR*,const WCHAR*);
Note:
See TracChangeset
for help on using the changeset viewer.