* include/tchar.h (_getts): Define as _getws for _UNICODE.
(_putts): Define as _putws for _UNICODE. Thanks to: Tomasz Pona <cochisek@poczta.onet.pl> for report.
This commit is contained in:
parent
af1c257a9b
commit
97858a2641
|
@ -1,3 +1,9 @@
|
||||||
|
2002-06-19 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
|
* include/tchar.h (_getts): Define as _getws for _UNICODE.
|
||||||
|
(_putts): Define as _putws for _UNICODE.
|
||||||
|
Thanks to: Tomasz Pona <cochisek@poczta.onet.pl> for report.
|
||||||
|
|
||||||
2002-06-18 Danny Smith <dannysmith@users.sourceforge.net>
|
2002-06-18 Danny Smith <dannysmith@users.sourceforge.net>
|
||||||
|
|
||||||
* include/float.h: #include_next<float.h> before header guard.
|
* include/float.h: #include_next<float.h> before header guard.
|
||||||
|
|
|
@ -98,9 +98,9 @@ typedef wchar_t _TCHAR;
|
||||||
#define _fputtchar _fputwchar
|
#define _fputtchar _fputwchar
|
||||||
#define _fputts fputws
|
#define _fputts fputws
|
||||||
#define _gettc getwc
|
#define _gettc getwc
|
||||||
#define _getts getws
|
#define _getts _getws
|
||||||
#define _puttc putwc
|
#define _puttc putwc
|
||||||
#define _putts putws
|
#define _putts _putws
|
||||||
#define _ungettc ungetwc
|
#define _ungettc ungetwc
|
||||||
#define _tcstod wcstod
|
#define _tcstod wcstod
|
||||||
#define _tcstol wcstol
|
#define _tcstol wcstol
|
||||||
|
|
Loading…
Reference in New Issue