summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2009-06-18 09:42:40 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2009-06-18 09:42:40 (GMT)
commitb1c6f1ed60dd86412f73409643e28320283c8cc6 (patch)
tree5e6fff3d5e285e98e947454b57ba1770cf000b55 /generic/tclIntDecls.h
parentbf70bdd02363606dc3d81c1a97059be6ecaec3b6 (diff)
downloadtcl-b1c6f1ed60dd86412f73409643e28320283c8cc6.zip
tcl-b1c6f1ed60dd86412f73409643e28320283c8cc6.tar.gz
tcl-b1c6f1ed60dd86412f73409643e28320283c8cc6.tar.bz2
regen
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r--generic/tclIntDecls.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h
index a432255..bdcdf29 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.132 2009/02/27 23:03:41 nijtmans Exp $
+ * RCS: @(#) $Id: tclIntDecls.h,v 1.133 2009/06/18 09:42:40 dkf Exp $
*/
#ifndef _TCLINTDECLS
@@ -1025,6 +1025,11 @@ EXTERN int TclNREvalObjv (Tcl_Interp * interp, int objc,
Tcl_Obj *const objv[], int flags,
Command * cmdPtr);
#endif
+#ifndef TclDbDumpActiveObjects_TCL_DECLARED
+#define TclDbDumpActiveObjects_TCL_DECLARED
+/* 243 */
+EXTERN void TclDbDumpActiveObjects (FILE * outFile);
+#endif
typedef struct TclIntStubs {
int magic;
@@ -1273,6 +1278,7 @@ typedef struct TclIntStubs {
int (*tclNRRunCallbacks) (Tcl_Interp * interp, int result, struct TEOV_callback * rootPtr, int tebcCall); /* 240 */
int (*tclNREvalObjEx) (Tcl_Interp * interp, Tcl_Obj * objPtr, int flags, const CmdFrame * invoker, int word); /* 241 */
int (*tclNREvalObjv) (Tcl_Interp * interp, int objc, Tcl_Obj *const objv[], int flags, Command * cmdPtr); /* 242 */
+ void (*tclDbDumpActiveObjects) (FILE * outFile); /* 243 */
} TclIntStubs;
#if defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS)
@@ -1975,6 +1981,10 @@ extern const TclIntStubs *tclIntStubsPtr;
#define TclNREvalObjv \
(tclIntStubsPtr->tclNREvalObjv) /* 242 */
#endif
+#ifndef TclDbDumpActiveObjects
+#define TclDbDumpActiveObjects \
+ (tclIntStubsPtr->tclDbDumpActiveObjects) /* 243 */
+#endif
#endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */