diff options
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 410538d..6fe33f1 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -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. # -# RCS: @(#) $Id: tcl.decls,v 1.118 2005/12/27 20:14:08 kennykb Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.119 2006/02/01 18:27:43 dgp Exp $ library tcl @@ -2037,7 +2037,17 @@ declare 566 generic { int Tcl_InitBignumFromDouble(Tcl_Interp* interp, double initval, mp_int *toInit) } - + +# TIP 181 +declare 567 generic { + Tcl_Obj *Tcl_GetNamespaceUnknownHandler(Tcl_Interp *interp, + Tcl_Namespace *nsPtr) +} +declare 568 generic { + int Tcl_SetNamespaceUnknownHandler( + Tcl_Interp *interp, Tcl_Namespace *nsPtr, + Tcl_Obj *handlerPtr) +} ############################################################################## @@ -2078,6 +2088,7 @@ declare 1 macosx { char *libraryPath) } + ############################################################################## # Public functions that are not accessible via the stubs table: |