summaryrefslogtreecommitdiffstats
path: root/generic/tclPlatDecls.h
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-04-15 13:58:44 (GMT)
committernijtmans <nijtmans>2010-04-15 13:58:44 (GMT)
commitdb01c2c09b47edf7346c5179c24675864c03d1f9 (patch)
tree96f83479f2f1ad77df6267467be146d8e7018a9b /generic/tclPlatDecls.h
parentd38a5b66d8690611d238c2510750e024cc9570a9 (diff)
downloadtcl-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/tclPlatDecls.h')
-rw-r--r--generic/tclPlatDecls.h20
1 files changed, 4 insertions, 16 deletions
diff --git a/generic/tclPlatDecls.h b/generic/tclPlatDecls.h
index 34d05fd..b9117ac 100644
--- a/generic/tclPlatDecls.h
+++ b/generic/tclPlatDecls.h
@@ -6,7 +6,7 @@
* Copyright (c) 1998-1999 by Scriptics Corporation.
* All rights reserved.
*
- * RCS: @(#) $Id: tclPlatDecls.h,v 1.37 2010/02/05 10:03:23 nijtmans Exp $
+ * RCS: @(#) $Id: tclPlatDecls.h,v 1.38 2010/04/15 13:58:44 nijtmans Exp $
*/
#ifndef _TCLPLATDECLS
@@ -24,22 +24,10 @@
#endif
/*
- * Pull in the typedef of TCHAR for windows.
+ * WARNING: This file is automatically generated by the tools/genStubs.tcl
+ * script. Any modifications to the function declarations below should be made
+ * in the generic/tcl.decls script.
*/
-#if defined(__CYGWIN__)
- typedef char TCHAR;
-#elif defined(__WIN32__) && !defined(_TCHAR_DEFINED)
-# include <tchar.h>
-# ifndef _TCHAR_DEFINED
- /* Borland seems to forget to set this. */
- typedef _TCHAR TCHAR;
-# define _TCHAR_DEFINED
-# endif
-# if defined(_MSC_VER) && defined(__STDC__)
- /* MSVC++ misses this. */
- typedef _TCHAR TCHAR;
-# endif
-#endif
/* !BEGIN!: Do not edit below this line. */