summaryrefslogtreecommitdiffstats
path: root/generic
diff options
context:
space:
mode:
authorericm <ericm>2000-08-15 00:08:36 (GMT)
committerericm <ericm>2000-08-15 00:08:36 (GMT)
commit45dcb6a5533f7a1980cdb9264f793958fa641b89 (patch)
treea0d32d8409edb97650250ac72faa5ff29e17cbb3 /generic
parentb775edfbf6db7b080897657dbd61e3189593eff6 (diff)
downloadtcl-45dcb6a5533f7a1980cdb9264f793958fa641b89.zip
tcl-45dcb6a5533f7a1980cdb9264f793958fa641b89.tar.gz
tcl-45dcb6a5533f7a1980cdb9264f793958fa641b89.tar.bz2
* win/makefile.vc:
* win/Makefile.in: * unix/Makefile.in: Added tclPlatDecls.h to the list of installed headers, for more complete stubs support. [Bug: 5241]. * generic/tcl.h: Added #include "tclPlatDecls.h" to get platform-specific stubs declarations (Tcl_WinTCharToUtf, etc) [Bug: 5241].
Diffstat (limited to 'generic')
-rw-r--r--generic/tcl.h9
1 files changed, 8 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h
index 9b837c9..eb8329a 100644
--- a/generic/tcl.h
+++ b/generic/tcl.h
@@ -12,7 +12,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.75 2000/07/22 01:53:23 ericm Exp $
+ * RCS: @(#) $Id: tcl.h,v 1.76 2000/08/15 00:08:36 ericm Exp $
*/
#ifndef _TCL
@@ -1795,6 +1795,13 @@ EXTERN char * Tcl_InitStubs _ANSI_ARGS_((Tcl_Interp *interp,
#include "tclDecls.h"
/*
+ * Include platform specific public function declarations that are
+ * accessible via the stubs table.
+ */
+
+#include "tclPlatDecls.h"
+
+/*
* Public functions that are not accessible via the stubs table.
*/