|
From: <ea...@us...> - 2002-05-28 13:34:04
|
Update of /cvsroot/mingw/runtime/include In directory usw-pr-cvs1:/tmp/cvs-serv25604/include Modified Files: tchar.h Log Message: Merging Cygwin changes Index: tchar.h =================================================================== RCS file: /cvsroot/mingw/runtime/include/tchar.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** tchar.h 25 Jan 2002 20:05:26 -0000 1.5 --- tchar.h 28 May 2002 13:06:47 -0000 1.6 *************** *** 68,72 **** * notice. */ ! #define __TEXT(x) L##x /* for porting from other Windows compilers */ --- 68,72 ---- * notice. */ ! #define __TEXT(q) L##q /* for porting from other Windows compilers */ *************** *** 190,193 **** --- 190,198 ---- #define _tfopen _wfopen #define _tgetenv _wgetenv + #define _tputenv _wputenv + #define _tsearchenv _wsearchenv + #define _tmakepath _wmakepath + #define _tsplitpath _wsplitpath + #define _tfullpath _wfullpath #define _tmktemp _wmktemp #define _topen _wopen *************** *** 222,226 **** * notice. */ ! #define __TEXT(x) x /* for porting from other Windows compilers */ --- 227,231 ---- * notice. */ ! #define __TEXT(q) q /* for porting from other Windows compilers */ *************** *** 253,256 **** --- 258,266 ---- #define _tfopen fopen #define _tgetenv getenv + #define _tputenv _putenv + #define _tsearchenv _searchenv + #define _tmakepath _makepath + #define _tsplitpath _splitpath + #define _tfullpath _fullpath #define _gettc getc #define _getts gets |