diff options
author | nijtmans <nijtmans> | 2010-04-15 13:58:44 (GMT) |
---|---|---|
committer | nijtmans <nijtmans> | 2010-04-15 13:58:44 (GMT) |
commit | db01c2c09b47edf7346c5179c24675864c03d1f9 (patch) | |
tree | 96f83479f2f1ad77df6267467be146d8e7018a9b /generic/tcl.h | |
parent | d38a5b66d8690611d238c2510750e024cc9570a9 (diff) | |
download | tcl-db01c2c09b47edf7346c5179c24675864c03d1f9.zip tcl-db01c2c09b47edf7346c5179c24675864c03d1f9.tar.gz tcl-db01c2c09b47edf7346c5179c24675864c03d1f9.tar.bz2 |
Move inclusion of <tchar.h> from tclPlatDecls.h
to tclWinPort.h, where it belongs.
Add fallback in tcl.h, so at least TCHAR typedef is
always available in win32, even without <tchar.h>
Tk already did the same in tkWinPort.h, now Tcl does
it the same (correct) way.
Diffstat (limited to 'generic/tcl.h')
-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 5420c7b..6aff11d 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.302 2010/02/16 16:30:52 dkf Exp $ + * RCS: @(#) $Id: tcl.h,v 1.303 2010/04/15 13:58:44 nijtmans Exp $ */ #ifndef _TCL @@ -2375,6 +2375,12 @@ EXTERN const char * Tcl_PkgInitStubsCheck(Tcl_Interp *interp, EXTERN void Tcl_GetMemoryInfo(Tcl_DString *dsPtr); #endif +#if !defined(_TCHAR_DEFINED) +# if defined(__WIN32__) + typedef char TCHAR; +# define _TCHAR_DEFINED +# endif +#endif /* *---------------------------------------------------------------------------- * Include the public function declarations that are accessible via the stubs |