summaryrefslogtreecommitdiffstats
path: root/generic/tcl.h
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-04-15 14:56:32 (GMT)
committernijtmans <nijtmans>2010-04-15 14:56:32 (GMT)
commit78452e7487441b936ac7f0fdfbb937472e413907 (patch)
treee8b1ef9033dc8f1c1538b6790e3b7675445aa628 /generic/tcl.h
parentdb01c2c09b47edf7346c5179c24675864c03d1f9 (diff)
downloadtcl-78452e7487441b936ac7f0fdfbb937472e413907.zip
tcl-78452e7487441b936ac7f0fdfbb937472e413907.tar.gz
tcl-78452e7487441b936ac7f0fdfbb937472e413907.tar.bz2
Added comment
Diffstat (limited to 'generic/tcl.h')
-rw-r--r--generic/tcl.h8
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;