u_hash_table.h

Go to the documentation of this file.
00001 /**************************************************************************
00002  *
00003  * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
00004  * All Rights Reserved.
00005  *
00006  * Permission is hereby granted, free of charge, to any person obtaining a
00007  * copy of this software and associated documentation files (the
00008  * "Software"), to deal in the Software without restriction, including
00009  * without limitation the rights to use, copy, modify, merge, publish,
00010  * distribute, sub license, and/or sell copies of the Software, and to
00011  * permit persons to whom the Software is furnished to do so, subject to
00012  * the following conditions:
00013  *
00014  * The above copyright notice and this permission notice (including the
00015  * next paragraph) shall be included in all copies or substantial portions
00016  * of the Software.
00017  *
00018  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
00019  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00020  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
00021  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
00022  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
00023  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
00024  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00025  *
00026  **************************************************************************/
00027 
00034 #ifndef U_HASH_TABLE_H_
00035 #define U_HASH_TABLE_H_
00036 
00037 
00038 #include "pipe/p_error.h"
00039 
00040 
00041 #ifdef __cplusplus
00042 extern "C" {
00043 #endif
00044 
00045    
00049 struct hash_table;
00050 
00051 
00058 struct hash_table *
00059 hash_table_create(unsigned (*hash)(void *key),
00060                   int (*compare)(void *key1, void *key2));
00061 
00062 
00063 enum pipe_error
00064 hash_table_set(struct hash_table *ht,
00065                void *key,
00066                void *value);
00067 
00068 void *
00069 hash_table_get(struct hash_table *ht, 
00070                void *key);
00071 
00072 
00073 void
00074 hash_table_remove(struct hash_table *ht, 
00075                   void *key);
00076 
00077 
00078 void
00079 hash_table_clear(struct hash_table *ht);
00080 
00081 
00082 enum pipe_error
00083 hash_table_foreach(struct hash_table *ht,
00084                    enum pipe_error (*callback)(void *key, void *value, void *data),
00085                    void *data);
00086 
00087 void
00088 hash_table_destroy(struct hash_table *ht);
00089 
00090 
00091 #ifdef __cplusplus
00092 }
00093 #endif
00094 
00095 #endif /* U_HASH_TABLE_H_ */

Generated on Tue Sep 29 06:25:15 2009 for Gallium3D by  doxygen 1.5.4