diff options
author | suresh <suresh> | 1998-06-12 16:49:33 (GMT) |
---|---|---|
committer | suresh <suresh> | 1998-06-12 16:49:33 (GMT) |
commit | 831adc93ab837996958e25545bef7df6df12feeb (patch) | |
tree | 1b10043d501e4d062073d155fbc8d5fc2bd62d32 | |
parent | 8139ad0bcb4d52515ad4c4d897de9d575fb4dd7a (diff) | |
download | tcl-831adc93ab837996958e25545bef7df6df12feeb.zip tcl-831adc93ab837996958e25545bef7df6df12feeb.tar.gz tcl-831adc93ab837996958e25545bef7df6df12feeb.tar.bz2 |
Added prototype for the new public routine 'Tcl_GetNameOfExecutable(...)'.
-rw-r--r-- | generic/tcl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tcl.h b/generic/tcl.h index c2f28e9..ed4676d 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.3 1998/06/10 12:30:43 escoffon Exp $ + * SCCS: %Z% $Id: tcl.h,v 1.4 1998/06/12 16:49:33 suresh Exp $ */ #ifndef _TCL @@ -1254,6 +1254,7 @@ EXTERN int Tcl_GetIntFromObj _ANSI_ARGS_((Tcl_Interp *interp, EXTERN int Tcl_GetLongFromObj _ANSI_ARGS_((Tcl_Interp *interp, Tcl_Obj *objPtr, long *longPtr)); EXTERN Tcl_Interp * Tcl_GetMaster _ANSI_ARGS_((Tcl_Interp *interp)); +EXTERN CONST char * Tcl_GetNameOfExecutable(); EXTERN Tcl_Obj * Tcl_GetObjResult _ANSI_ARGS_((Tcl_Interp *interp)); EXTERN Tcl_ObjType * Tcl_GetObjType _ANSI_ARGS_((char *typeName)); EXTERN int Tcl_GetOpenFile _ANSI_ARGS_((Tcl_Interp *interp, |