diff options
| author | nijtmans <nijtmans> | 2010-04-15 14:56:32 (GMT) |
|---|---|---|
| committer | nijtmans <nijtmans> | 2010-04-15 14:56:32 (GMT) |
| commit | 29e7b67c619e27b6cfe098a1a375655732e9740e (patch) | |
| tree | e8b1ef9033dc8f1c1538b6790e3b7675445aa628 | |
| parent | d194ec2efa82fd1849f6360c4ce08359d1b6d6ce (diff) | |
| download | tcl-29e7b67c619e27b6cfe098a1a375655732e9740e.zip tcl-29e7b67c619e27b6cfe098a1a375655732e9740e.tar.gz tcl-29e7b67c619e27b6cfe098a1a375655732e9740e.tar.bz2 | |
Added comment
| -rw-r--r-- | generic/tcl.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index 6aff11d..f9ce79a 100644 --- a/generic/tcl.h +++ b/generic/tcl.h @@ -13,7 +13,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tcl.h,v 1.303 2010/04/15 13:58:44 nijtmans Exp $ + * RCS: @(#) $Id: tcl.h,v 1.304 2010/04/15 14:56:32 nijtmans Exp $ */ #ifndef _TCL @@ -2375,6 +2375,12 @@ EXTERN const char * Tcl_PkgInitStubsCheck(Tcl_Interp *interp, EXTERN void Tcl_GetMemoryInfo(Tcl_DString *dsPtr); #endif +/* + * Unfortunately, TCHAR is needed in tclPlatDecls.h for + * win32, so if TCHAR is not defined yet do it here. + * This way, we don't need to include <tchar.h> just + * for one define. + */ #if !defined(_TCHAR_DEFINED) # if defined(__WIN32__) typedef char TCHAR; |
