summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2007-08-07 17:28:38 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2007-08-07 17:28:38 (GMT)
commitacb6c01d805b714bf8d7250125ca8a673a6304ac (patch)
tree5ec544cfec73cfa36457c028cd3bc363b1d804c0 /generic/tclIntDecls.h
parent69867ccb985d020a31fded300114676592dcac9f (diff)
downloadtcl-acb6c01d805b714bf8d7250125ca8a673a6304ac.zip
tcl-acb6c01d805b714bf8d7250125ca8a673a6304ac.tar.gz
tcl-acb6c01d805b714bf8d7250125ca8a673a6304ac.tar.bz2
* generic/tclInt.decls: Exporting via stubs to help
* generic/tclInt.h: xotcl adapt to VarReform. * generic/tclIntDecls.h: * generic/tclStubInit.c:
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r--generic/tclIntDecls.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h
index e08b38b..876a4bf 100644
--- a/generic/tclIntDecls.h
+++ b/generic/tclIntDecls.h
@@ -11,7 +11,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclIntDecls.h,v 1.103 2007/08/04 18:32:27 msofer Exp $
+ * RCS: @(#) $Id: tclIntDecls.h,v 1.104 2007/08/07 17:28:39 msofer Exp $
*/
#ifndef _TCLINTDECLS
@@ -1045,6 +1045,12 @@ EXTERN void TclGetSrcInfoForPc (CmdFrame * contextPtr);
EXTERN Var * TclVarHashCreateVar (TclVarHashTable * tablePtr,
const char * key, int * newPtr);
#endif
+#ifndef TclInitVarHashTable_TCL_DECLARED
+#define TclInitVarHashTable_TCL_DECLARED
+/* 235 */
+EXTERN void TclInitVarHashTable (TclVarHashTable * tablePtr,
+ Namespace * nsPtr);
+#endif
typedef struct TclIntStubs {
int magic;
@@ -1300,6 +1306,7 @@ typedef struct TclIntStubs {
int (*tclEvalObjEx) (Tcl_Interp * interp, Tcl_Obj * objPtr, int flags, const CmdFrame * invoker, int word); /* 232 */
void (*tclGetSrcInfoForPc) (CmdFrame * contextPtr); /* 233 */
Var * (*tclVarHashCreateVar) (TclVarHashTable * tablePtr, const char * key, int * newPtr); /* 234 */
+ void (*tclInitVarHashTable) (TclVarHashTable * tablePtr, Namespace * nsPtr); /* 235 */
} TclIntStubs;
#ifdef __cplusplus
@@ -2025,6 +2032,10 @@ extern TclIntStubs *tclIntStubsPtr;
#define TclVarHashCreateVar \
(tclIntStubsPtr->tclVarHashCreateVar) /* 234 */
#endif
+#ifndef TclInitVarHashTable
+#define TclInitVarHashTable \
+ (tclIntStubsPtr->tclInitVarHashTable) /* 235 */
+#endif
#endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */