diff options
Diffstat (limited to 'generic/tcl.h')
-rw-r--r-- | generic/tcl.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index ab7d032..eefe9f7 100644 --- a/generic/tcl.h +++ b/generic/tcl.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. * - * SCCS: %Z% $Id: tcl.h,v 1.5 1998/06/15 12:33:20 suresh Exp $ + * SCCS: %Z% $Id: tcl.h,v 1.6 1998/06/29 17:32:08 welch Exp $ */ #ifndef _TCL @@ -967,6 +967,7 @@ typedef struct Tcl_ChannelType { Tcl_DriverGetHandleProc *getHandleProc; /* Get an OS handle from the channel * or NULL if not supported. */ + VOID *reserved; /* reserved for future expansion */ } Tcl_ChannelType; /* @@ -1172,7 +1173,8 @@ EXTERN int Tcl_EvalFile _ANSI_ARGS_((Tcl_Interp *interp, EXTERN void Tcl_EventuallyFree _ANSI_ARGS_((ClientData clientData, Tcl_FreeProc *freeProc)); EXTERN int Tcl_EvalObj _ANSI_ARGS_((Tcl_Interp *interp, - Tcl_Obj *objPtr)); + Tcl_Obj *objPtr, int flags)); +#define Tcl_EvalObj(a,b) Tcl_EvalObj(a,b,0) EXTERN void Tcl_Exit _ANSI_ARGS_((int status)); EXTERN int Tcl_ExposeCommand _ANSI_ARGS_((Tcl_Interp *interp, char *hiddenCmdToken, char *cmdName)); |