diff options
author | redman <redman@noemail.net> | 1999-06-30 22:34:43 (GMT) |
---|---|---|
committer | redman <redman@noemail.net> | 1999-06-30 22:34:43 (GMT) |
commit | b4439366f2fb6c7a4781682f9a472f43d8dc8e7b (patch) | |
tree | 2e3e45ba15faf8e03e59eea8c17e2b62353a6efb /generic/tclInt.decls | |
parent | 64841ea1b2f26e9ed97062ccdbdf292435d1155b (diff) | |
download | tcl-b4439366f2fb6c7a4781682f9a472f43d8dc8e7b.zip tcl-b4439366f2fb6c7a4781682f9a472f43d8dc8e7b.tar.gz tcl-b4439366f2fb6c7a4781682f9a472f43d8dc8e7b.tar.bz2 |
Add TclHandle functions to the internal stub table.
Remove unused tclStubs.c file.
FossilOrigin-Name: 17d529bed8c9def8e7fcca24f5d8b8f58e885f0c
Diffstat (limited to 'generic/tclInt.decls')
-rw-r--r-- | generic/tclInt.decls | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/generic/tclInt.decls b/generic/tclInt.decls index a35ccf9..48cb4dd 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.11 1999/05/25 01:00:26 stanton Exp $ +# RCS: @(#) $Id: tclInt.decls,v 1.12 1999/06/30 22:34:44 redman Exp $ library tcl @@ -544,6 +544,22 @@ declare 145 generic { struct AuxDataType *TclGetAuxDataType(char *typeName) } +declare 146 generic { + TclHandle TclHandleCreate(VOID *ptr) +} + +declare 147 generic { + void TclHandleFree(TclHandle handle) +} + +declare 148 generic { + TclHandle TclHandlePreserve(TclHandle handle) +} + +declare 149 generic { + void TclHandleRelease(TclHandle handle) +} + ############################################################################## # Define the platform specific internal Tcl interface. These functions are |