summaryrefslogtreecommitdiffstats
path: root/generic/tclInt.decls
diff options
context:
space:
mode:
authordkf <dkf@noemail.net>2009-07-15 13:17:16 (GMT)
committerdkf <dkf@noemail.net>2009-07-15 13:17:16 (GMT)
commit50110cab6cb49be574d52f3dd827c06cca7cdc49 (patch)
tree30dfc00e40cfadd30723fb7fcb13abc429ddb8b1 /generic/tclInt.decls
parent7c3dbd34f6f6784cab84fc17af574fc24b22e7d7 (diff)
downloadtcl-50110cab6cb49be574d52f3dd827c06cca7cdc49.zip
tcl-50110cab6cb49be574d52f3dd827c06cca7cdc49.tar.gz
tcl-50110cab6cb49be574d52f3dd827c06cca7cdc49.tar.bz2
Added code to save space in namespaces. Currently #ifdef'ed out for compat.
Also added code from itcl-ng for better separation of concerns. FossilOrigin-Name: 518b8a92e083149d15d0045b0931240c85452db7
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r--generic/tclInt.decls24
1 files changed, 22 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls
index 0847324..dc4a7ff 100644
--- a/generic/tclInt.decls
+++ b/generic/tclInt.decls
@@ -13,10 +13,10 @@
# See the file "license.terms" for information on usage and redistribution
# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
#
-# RCS: @(#) $Id: tclInt.decls,v 1.139 2009/06/18 09:41:26 dkf Exp $
+# RCS: @(#) $Id: tclInt.decls,v 1.140 2009/07/15 13:17:18 dkf Exp $
library tcl
-
+
# Define the unsupported generic interfaces.
interface tclInt
@@ -976,6 +976,21 @@ declare 243 generic {
void TclDbDumpActiveObjects(FILE *outFile)
}
+# Functions to make things better for itcl
+declare 244 generic {
+ Tcl_HashTable *TclGetNamespaceChildTable(Tcl_Namespace *nsPtr)
+}
+declare 245 generic {
+ Tcl_HashTable *TclGetNamespaceCommandTable(Tcl_Namespace *nsPtr)
+}
+declare 246 generic {
+ int TclInitRewriteEnsemble(Tcl_Interp *interp, int numRemoved,
+ int numInserted, Tcl_Obj *const *objv)
+}
+declare 247 generic {
+ void TclResetRewriteEnsemble(Tcl_Interp *interp, int isRootEnsemble)
+}
+
##############################################################################
# Define the platform specific internal Tcl interface. These functions are
@@ -1190,3 +1205,8 @@ declare 18 macosx {
declare 19 macosx {
void TclMacOSXNotifierAddRunLoopMode(const void *runLoopMode)
}
+
+
+# Local Variables:
+# mode: tcl
+# End: