summaryrefslogtreecommitdiffstats
path: root/generic/tclIntDecls.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2005-07-21 21:50:47 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2005-07-21 21:50:47 (GMT)
commit45f567905490707f572d6b6a31274edca1f06b59 (patch)
treefc01fae4b971080963b18ede4851b4fe48c579ab /generic/tclIntDecls.h
parent6a77d40d48491f6d5c3dabe5a735ac475c14c493 (diff)
downloadtcl-45f567905490707f572d6b6a31274edca1f06b59.zip
tcl-45f567905490707f572d6b6a31274edca1f06b59.tar.gz
tcl-45f567905490707f572d6b6a31274edca1f06b59.tar.bz2
regen
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r--generic/tclIntDecls.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h
index b379778..b7a3110 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.81 2005/07/05 18:15:56 dgp Exp $
+ * RCS: @(#) $Id: tclIntDecls.h,v 1.82 2005/07/21 21:50:47 dkf Exp $
*/
#ifndef _TCLINTDECLS
@@ -1157,6 +1157,13 @@ EXTERN int TclBN_mp_read_radix _ANSI_ARGS_((mp_int * a,
/* 224 */
EXTERN TclPlatformType * TclGetPlatform _ANSI_ARGS_((void));
#endif
+#ifndef TclTraceDictPath_TCL_DECLARED
+#define TclTraceDictPath_TCL_DECLARED
+/* 225 */
+EXTERN Tcl_Obj * TclTraceDictPath _ANSI_ARGS_((Tcl_Interp * interp,
+ Tcl_Obj * rootPtr, int keyc,
+ Tcl_Obj *CONST keyv[], int flags));
+#endif
typedef struct TclIntStubs {
int magic;
@@ -1402,6 +1409,7 @@ typedef struct TclIntStubs {
int (*tclBN_mp_init) _ANSI_ARGS_((mp_int * a)); /* 222 */
int (*tclBN_mp_read_radix) _ANSI_ARGS_((mp_int * a, const char * str, int radix)); /* 223 */
TclPlatformType * (*tclGetPlatform) _ANSI_ARGS_((void)); /* 224 */
+ Tcl_Obj * (*tclTraceDictPath) _ANSI_ARGS_((Tcl_Interp * interp, Tcl_Obj * rootPtr, int keyc, Tcl_Obj *CONST keyv[], int flags)); /* 225 */
} TclIntStubs;
#ifdef __cplusplus
@@ -2177,6 +2185,10 @@ extern TclIntStubs *tclIntStubsPtr;
#define TclGetPlatform \
(tclIntStubsPtr->tclGetPlatform) /* 224 */
#endif
+#ifndef TclTraceDictPath
+#define TclTraceDictPath \
+ (tclIntStubsPtr->tclTraceDictPath) /* 225 */
+#endif
#endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */