diff options
author | kennykb <kennykb@noemail.net> | 2001-04-27 22:11:50 (GMT) |
---|---|---|
committer | kennykb <kennykb@noemail.net> | 2001-04-27 22:11:50 (GMT) |
commit | 7b736f13589796e44b5b7cc62fb10a4bd9aa31a4 (patch) | |
tree | 78af95402457478beaea317227964953c26db4eb /generic/tclInt.decls | |
parent | 923c70609eacf0ba5b3a167e2f4ca0258d0036fb (diff) | |
download | tcl-7b736f13589796e44b5b7cc62fb10a4bd9aa31a4.zip tcl-7b736f13589796e44b5b7cc62fb10a4bd9aa31a4.tar.gz tcl-7b736f13589796e44b5b7cc62fb10a4bd9aa31a4.tar.bz2 |
Added several missing CONSTs in calls to TclGetNamespaceForQualName
FossilOrigin-Name: 0d69de502723e66c209241d6c3dc073458ac946c
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index 4b903ef..dce2e0e 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.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: tclInt.decls,v 1.24 2001/04/24 20:59:18 kennykb Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.25 2001/04/27 22:11:51 kennykb Exp $ library tcl @@ -62,7 +62,8 @@ declare 9 {unix win} { TclFile *errFilePtr) } declare 10 generic { - int TclCreateProc(Tcl_Interp *interp, Namespace *nsPtr, char *procName, \ + int TclCreateProc(Tcl_Interp *interp, Namespace *nsPtr, + CONST char *procName, Tcl_Obj *argsPtr, Tcl_Obj *bodyPtr, Proc **procPtrPtr) } declare 11 generic { |