diff options
author | dgp <dgp@noemail.net> | 2001-09-25 16:23:55 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2001-09-25 16:23:55 (GMT) |
commit | a9f5a92ffe1bc816f2a36bd81da01686fb06f056 (patch) | |
tree | f40b58c1e7b96d42ea434c52d0a455b5f0b98fe5 /generic/tcl.decls | |
parent | d4842d40e8e059e494fa262c52fdec6c51968feb (diff) | |
download | tcl-a9f5a92ffe1bc816f2a36bd81da01686fb06f056.zip tcl-a9f5a92ffe1bc816f2a36bd81da01686fb06f056.tar.gz tcl-a9f5a92ffe1bc816f2a36bd81da01686fb06f056.tar.bz2 |
* Updated APIs in generic/tclGet.c
according to the guidelines of TIP 27. [Patch 464674]
FossilOrigin-Name: 7f1745dad6149cd3035dd4d802654d93c4b822a1
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 3ea0526..d80e3fa 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: tcl.decls,v 1.59 2001/09/24 21:10:32 dgp Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.60 2001/09/25 16:23:55 dgp Exp $ library tcl @@ -136,7 +136,7 @@ declare 30 generic { void TclFreeObj(Tcl_Obj *objPtr) } declare 31 generic { - int Tcl_GetBoolean(Tcl_Interp *interp, char *str, int *boolPtr) + int Tcl_GetBoolean(Tcl_Interp *interp, CONST char *str, int *boolPtr) } declare 32 generic { int Tcl_GetBooleanFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, \ @@ -146,7 +146,7 @@ declare 33 generic { unsigned char * Tcl_GetByteArrayFromObj(Tcl_Obj *objPtr, int *lengthPtr) } declare 34 generic { - int Tcl_GetDouble(Tcl_Interp *interp, char *str, double *doublePtr) + int Tcl_GetDouble(Tcl_Interp *interp, CONST char *str, double *doublePtr) } declare 35 generic { int Tcl_GetDoubleFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, \ @@ -157,7 +157,7 @@ declare 36 generic { char **tablePtr, char *msg, int flags, int *indexPtr) } declare 37 generic { - int Tcl_GetInt(Tcl_Interp *interp, char *str, int *intPtr) + int Tcl_GetInt(Tcl_Interp *interp, CONST char *str, int *intPtr) } declare 38 generic { int Tcl_GetIntFromObj(Tcl_Interp *interp, Tcl_Obj *objPtr, int *intPtr) |