diff options
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index 574b49b..953102b 100644 --- a/generic/tcl.decls +++ b/generic/tcl.decls @@ -2326,6 +2326,24 @@ declare 630 { # ----- BASELINE -- FOR -- 8.6.0 ----- # +# TIP #445 +declare 631 { + void Tcl_FreeIntRep(Tcl_Obj *objPtr) +} +declare 632 { + char *Tcl_InitStringRep(Tcl_Obj *objPtr, const char *bytes, + unsigned int numBytes) +} +declare 633 { + Tcl_ObjIntRep *Tcl_FetchIntRep(Tcl_Obj *objPtr, const Tcl_ObjType *typePtr) +} +declare 634 { + void Tcl_StoreIntRep(Tcl_Obj *objPtr, const Tcl_ObjType *typePtr, + const Tcl_ObjIntRep *irPtr) +} + +# ----- BASELINE -- FOR -- 8.7.0 ----- # + ############################################################################## # Define the platform specific public Tcl interface. These functions are only |