From dbe2670b69e163cb146d3fc3b3c7b82ea3f71278 Mon Sep 17 00:00:00 2001 From: Hisham Muhammad Date: Wed, 12 Jul 2006 01:16:03 +0000 Subject: Perform RichString operations by hand. Avoid unnecessary operations when processing entries on ProcessList. --- Hashtable.h | 4 ---- 1 file changed, 4 deletions(-) (limited to 'Hashtable.h') diff --git a/Hashtable.h b/Hashtable.h index a5f2434d..df481f2d 100644 --- a/Hashtable.h +++ b/Hashtable.h @@ -18,7 +18,6 @@ in the source distribution for its full text. typedef struct Hashtable_ Hashtable; typedef void(*Hashtable_PairFunction)(int, void*, void*); -typedef int(*Hashtable_HashAlgorithm)(Hashtable*, int); typedef struct HashtableItem { int key; @@ -30,7 +29,6 @@ struct Hashtable_ { int size; HashtableItem** buckets; int items; - Hashtable_HashAlgorithm hashAlgorithm; bool owner; }; @@ -38,8 +36,6 @@ HashtableItem* HashtableItem_new(int key, void* value); Hashtable* Hashtable_new(int size, bool owner); -int Hashtable_hashAlgorithm(Hashtable* this, int key); - void Hashtable_delete(Hashtable* this); inline int Hashtable_size(Hashtable* this); -- cgit v1.2.3