diff options
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index c7aaa0a..815b88c 100644 --- a/generic/tclInt.decls +++ b/generic/tclInt.decls @@ -7,10 +7,12 @@ # files # # Copyright (c) 1998-1999 by Scriptics Corporation. +# Copyright (c) 2001 by Kevin B. Kenny. All rights reserved. +# # 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.35 2001/10/15 20:26:57 andreas_kupries Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.36 2001/11/14 23:17:03 hobbs Exp $ library tcl @@ -647,6 +649,14 @@ declare 165 generic { void TclpSetInitialEncodings(void) } +# New function due to TIP #33 +declare 166 generic { + int TclListObjSetElement( Tcl_Interp* interp, + Tcl_Obj* listPtr, + int index, + Tcl_Obj* valuePtr ) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are |