diff options
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index ca4feee..7c69faf 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -2330,9 +2330,26 @@ declare 631 { ClientData callbackData) } -# ----- BASELINE -- FOR -- 8.7.0 ----- # - +# TIP #445 +declare 632 { + void Tcl_FreeIntRep(Tcl_Obj *objPtr) +} +declare 633 { + char *Tcl_InitStringRep(Tcl_Obj *objPtr, const char *bytes, + unsigned int numBytes) +} +declare 634 { + Tcl_ObjIntRep *Tcl_FetchIntRep(Tcl_Obj *objPtr, const Tcl_ObjType *typePtr) +} +declare 635 { + void Tcl_StoreIntRep(Tcl_Obj *objPtr, const Tcl_ObjType *typePtr, + const Tcl_ObjIntRep *irPtr) +} +declare 636 { + int Tcl_HasStringRep(Tcl_Obj *objPtr) +} +# ----- BASELINE -- FOR -- 8.7.0 ----- # ############################################################################## |