diff options
author | nijtmans <nijtmans> | 2010-04-15 14:56:32 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-15 14:56:32 (GMT) |
commit | 78452e7487441b936ac7f0fdfbb937472e413907 (patch) | |
tree | e8b1ef9033dc8f1c1538b6790e3b7675445aa628 /generic | |
parent | db01c2c09b47edf7346c5179c24675864c03d1f9 (diff) | |
download | tcl-78452e7487441b936ac7f0fdfbb937472e413907.zip tcl-78452e7487441b936ac7f0fdfbb937472e413907.tar.gz tcl-78452e7487441b936ac7f0fdfbb937472e413907.tar.bz2 |
Added comment
Diffstat (limited to 'generic')
-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; |