From 45f567905490707f572d6b6a31274edca1f06b59 Mon Sep 17 00:00:00 2001 From: dkf Date: Thu, 21 Jul 2005 21:50:47 +0000 Subject: regen --- generic/tclInt.decls | 8 +++++++- generic/tclIntDecls.h | 14 +++++++++++++- generic/tclStubInit.c | 3 ++- 3 files changed, 22 insertions(+), 3 deletions(-) diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 8af2153..a5c610d 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -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: tclInt.decls,v 1.90 2005/07/05 18:15:55 dgp Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.91 2005/07/21 21:50:47 dkf Exp $ library tcl @@ -897,6 +897,12 @@ declare 224 generic { TclPlatformType *TclGetPlatform(void) } +# +declare 225 generic { + Tcl_Obj *TclTraceDictPath(Tcl_Interp *interp, Tcl_Obj *rootPtr, + int keyc, Tcl_Obj *CONST keyv[], int flags) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are 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) */ diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 5a9c60b..df0bc64 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStubInit.c,v 1.119 2005/07/05 18:15:58 dgp Exp $ + * RCS: @(#) $Id: tclStubInit.c,v 1.120 2005/07/21 21:50:48 dkf Exp $ */ #include "tclInt.h" @@ -309,6 +309,7 @@ TclIntStubs tclIntStubs = { TclBN_mp_init, /* 222 */ TclBN_mp_read_radix, /* 223 */ TclGetPlatform, /* 224 */ + TclTraceDictPath, /* 225 */ }; TclIntPlatStubs tclIntPlatStubs = { -- cgit v0.12