diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-27 12:54:26 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-10-27 12:54:26 (GMT) |
commit | 890a4089ea27937eca75c8a052830931f2668072 (patch) | |
tree | 33ed76110392f2238e3375fd44423879f28b7a3a /generic/tclIntDecls.h | |
parent | fbdb724057c9545201d0a4cc2d8eb2edc4743392 (diff) | |
download | tcl-890a4089ea27937eca75c8a052830931f2668072.zip tcl-890a4089ea27937eca75c8a052830931f2668072.tar.gz tcl-890a4089ea27937eca75c8a052830931f2668072.tar.bz2 |
Regen
Diffstat (limited to 'generic/tclIntDecls.h')
-rw-r--r-- | generic/tclIntDecls.h | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/generic/tclIntDecls.h b/generic/tclIntDecls.h index 1b63197..8b5ad33 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.91 2006/10/27 12:33:51 dkf Exp $ + * RCS: @(#) $Id: tclIntDecls.h,v 1.92 2006/10/27 12:54:26 dkf Exp $ */ #ifndef _TCLINTDECLS @@ -1025,6 +1025,12 @@ EXTERN Tcl_Obj * TclTraceDictPath _ANSI_ARGS_((Tcl_Interp * interp, /* 226 */ EXTERN int TclObjBeingDeleted _ANSI_ARGS_((Tcl_Obj * objPtr)); #endif +#ifndef TclSetNsPath_TCL_DECLARED +#define TclSetNsPath_TCL_DECLARED +/* 227 */ +EXTERN void TclSetNsPath _ANSI_ARGS_((Namespace * nsPtr, + int pathLength, Tcl_Namespace * pathAry[])); +#endif typedef struct TclIntStubs { int magic; @@ -1272,6 +1278,7 @@ typedef struct TclIntStubs { 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 */ int (*tclObjBeingDeleted) _ANSI_ARGS_((Tcl_Obj * objPtr)); /* 226 */ + void (*tclSetNsPath) _ANSI_ARGS_((Namespace * nsPtr, int pathLength, Tcl_Namespace * pathAry[])); /* 227 */ } TclIntStubs; #ifdef __cplusplus @@ -1965,6 +1972,10 @@ extern TclIntStubs *tclIntStubsPtr; #define TclObjBeingDeleted \ (tclIntStubsPtr->tclObjBeingDeleted) /* 226 */ #endif +#ifndef TclSetNsPath +#define TclSetNsPath \ + (tclIntStubsPtr->tclSetNsPath) /* 227 */ +#endif #endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */ |