diff options
author | ericm <ericm> | 2000-07-20 20:33:24 (GMT) |
---|---|---|
committer | ericm <ericm> | 2000-07-20 20:33:24 (GMT) |
commit | da5f5e103ac30d423291eaf59b1ae03f87457aa3 (patch) | |
tree | 80753558bda4dc4a3e717cdf00236a8659462bd0 /generic/tcl.decls | |
parent | a3b08d83c4950ebd5fe493e21133368255026472 (diff) | |
download | tcl-da5f5e103ac30d423291eaf59b1ae03f87457aa3.zip tcl-da5f5e103ac30d423291eaf59b1ae03f87457aa3.tar.gz tcl-da5f5e103ac30d423291eaf59b1ae03f87457aa3.tar.bz2 |
* generic/tclStubInit.c:
* generic/tclObj.c:
* generic/tclInt.h:
* generic/tclHash.c:
* generic/tclDecls.h:
* generic/tcl.h:
* generic/tcl.decls:
* doc/Hash.3: Reverted patch from Paul Duffin to extend hash tables
to allow custom key types, such as Tcl_Obj *'s, and others; it
seems to break Tk.
Diffstat (limited to 'generic/tcl.decls')
-rw-r--r-- | generic/tcl.decls | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/generic/tcl.decls b/generic/tcl.decls index fd5bb54..869a402 100644 --- a/generic/tcl.decls +++ b/generic/tcl.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: tcl.decls,v 1.36 2000/07/19 22:15:29 ericm Exp $ +# RCS: @(#) $Id: tcl.decls,v 1.37 2000/07/20 20:33:25 ericm Exp $ library tcl @@ -1388,25 +1388,6 @@ declare 402 generic { CONST Tcl_UniChar *pattern, int nocase) } -declare 403 generic { - Tcl_HashEntry *Tcl_FindHashEntry(Tcl_HashTable *tablePtr, \ - CONST char *key) -} - -declare 404 generic { - Tcl_HashEntry *Tcl_CreateHashEntry(Tcl_HashTable *tablePtr, \ - CONST char *key, int *newPtr) -} - -declare 405 generic { - void Tcl_InitHashTableEx(Tcl_HashTable *tablePtr, int keyType, \ - Tcl_HashKeyType *typePtr) -} - -declare 406 generic { - void Tcl_InitObjHashTable(Tcl_HashTable *tablePtr) -} - ############################################################################## # Define the platform specific public Tcl interface. These functions are |