* include/tchar.h (_TCHAR): Add typedefs.

This commit is contained in:
Danny Smith 2002-01-25 03:00:36 +00:00
parent d554b253b5
commit 159743c264
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2002-01-25 Danny Smith <dannysmith@users.sourceforge.net>
* include/tchar.h (_TCHAR): Add typedefs.
2001-12-07 Earnie Boyd <earnie@users.sf.net> 2001-12-07 Earnie Boyd <earnie@users.sf.net>
* Makefile.in: Increment VERSION. * Makefile.in: Increment VERSION.

View File

@ -55,6 +55,7 @@
#ifndef _TCHAR_DEFINED #ifndef _TCHAR_DEFINED
#ifndef RC_INVOKED #ifndef RC_INVOKED
typedef wchar_t TCHAR; typedef wchar_t TCHAR;
typedef wchar_t _TCHAR
#endif /* Not RC_INVOKED */ #endif /* Not RC_INVOKED */
#define _TCHAR_DEFINED #define _TCHAR_DEFINED
#endif #endif
@ -209,6 +210,7 @@ typedef wchar_t TCHAR;
#ifndef _TCHAR_DEFINED #ifndef _TCHAR_DEFINED
#ifndef RC_INVOKED #ifndef RC_INVOKED
typedef char TCHAR; typedef char TCHAR;
typedef char _TCHAR;
#endif #endif
#define _TCHAR_DEFINED #define _TCHAR_DEFINED
#endif #endif