summaryrefslogtreecommitdiffstats
path: root/generic/tclDecls.h
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2008-12-05 21:40:38 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2008-12-05 21:40:38 (GMT)
commit63ab1f0c5d57ba9b4583d3c5029d900df034a628 (patch)
tree5ee254363173f81299b6f25aab78f9070992af94 /generic/tclDecls.h
parent0ab0d532e146a573c487c7e5e4c66282136b7b57 (diff)
downloadtcl-63ab1f0c5d57ba9b4583d3c5029d900df034a628.zip
tcl-63ab1f0c5d57ba9b4583d3c5029d900df034a628.tar.gz
tcl-63ab1f0c5d57ba9b4583d3c5029d900df034a628.tar.bz2
regen
Diffstat (limited to 'generic/tclDecls.h')
-rw-r--r--generic/tclDecls.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/generic/tclDecls.h b/generic/tclDecls.h
index bec1668..7e1c6fd 100644
--- a/generic/tclDecls.h
+++ b/generic/tclDecls.h
@@ -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: tclDecls.h,v 1.158 2008/12/05 14:28:10 dkf Exp $
+ * RCS: @(#) $Id: tclDecls.h,v 1.159 2008/12/05 21:40:38 dkf Exp $
*/
#ifndef _TCLDECLS
@@ -3676,6 +3676,11 @@ EXTERN void Tcl_SetErrorLine (Tcl_Interp * interp, int value);
EXTERN void Tcl_TransferResult (Tcl_Interp * sourceInterp,
int result, Tcl_Interp * targetInterp);
#endif
+#ifndef Tcl_InterpActive_TCL_DECLARED
+#define Tcl_InterpActive_TCL_DECLARED
+/* 608 */
+EXTERN int Tcl_InterpActive (Tcl_Interp * interp);
+#endif
typedef struct TclStubHooks {
const struct TclPlatStubs *tclPlatStubs;
@@ -4343,6 +4348,7 @@ typedef struct TclStubs {
int (*tcl_GetErrorLine) (Tcl_Interp * interp); /* 605 */
void (*tcl_SetErrorLine) (Tcl_Interp * interp, int value); /* 606 */
void (*tcl_TransferResult) (Tcl_Interp * sourceInterp, int result, Tcl_Interp * targetInterp); /* 607 */
+ int (*tcl_InterpActive) (Tcl_Interp * interp); /* 608 */
} TclStubs;
#if defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS)
@@ -6847,6 +6853,10 @@ extern const TclStubs *tclStubsPtr;
#define Tcl_TransferResult \
(tclStubsPtr->tcl_TransferResult) /* 607 */
#endif
+#ifndef Tcl_InterpActive
+#define Tcl_InterpActive \
+ (tclStubsPtr->tcl_InterpActive) /* 608 */
+#endif
#endif /* defined(USE_TCL_STUBS) && !defined(USE_TCL_STUB_PROCS) */