Fixed make distcheck.
[mono.git] / mono / utils / mono-hash.h
1 /* GLIB - Library of useful routines for C programming
2  * Copyright (C) 1995-1997  Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GLib Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GLib Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GLib at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #ifndef __MONO_G_HASH_H__
28 #define __MONO_G_HASH_H__
29
30 /*
31  * Imported in mono cvs from version 1.7 of gnome cvs.
32  * This hash table is GC friendly and the pointers stored in it
33  * are tracked by the garbage collector.
34  */
35
36 #include <glib.h>
37
38 G_BEGIN_DECLS
39
40 typedef struct _MonoGHashTable  MonoGHashTable;
41
42 /* Hash tables
43  */
44 MonoGHashTable* mono_g_hash_table_new              (GHashFunc       hash_func,
45                                             GEqualFunc      key_equal_func);
46 MonoGHashTable* mono_g_hash_table_new_full                 (GHashFunc       hash_func,
47                                             GEqualFunc      key_equal_func,
48                                             GDestroyNotify  key_destroy_func,
49                                             GDestroyNotify  value_destroy_func);
50 void        mono_g_hash_table_destroy      (MonoGHashTable         *hash_table);
51 void        mono_g_hash_table_insert               (MonoGHashTable         *hash_table,
52                                             gpointer        key,
53                                             gpointer        value);
54 void        mono_g_hash_table_replace           (MonoGHashTable     *hash_table,
55                                             gpointer        key,
56                                             gpointer        value);
57 gboolean    mono_g_hash_table_remove               (MonoGHashTable         *hash_table,
58                                             gconstpointer   key);
59 gboolean    mono_g_hash_table_steal             (MonoGHashTable     *hash_table,
60                                             gconstpointer   key);
61 gpointer    mono_g_hash_table_lookup               (MonoGHashTable         *hash_table,
62                                             gconstpointer   key);
63 gboolean    mono_g_hash_table_lookup_extended   (MonoGHashTable    *hash_table,
64                                             gconstpointer   lookup_key,
65                                             gpointer       *orig_key,
66                                             gpointer       *value);
67 void        mono_g_hash_table_foreach      (MonoGHashTable         *hash_table,
68                                             GHFunc          func,
69                                             gpointer        user_data);
70 guint       mono_g_hash_table_foreach_remove       (MonoGHashTable         *hash_table,
71                                             GHRFunc         func,
72                                             gpointer        user_data);
73 guint       mono_g_hash_table_foreach_steal        (MonoGHashTable         *hash_table,
74                                             GHRFunc         func,
75                                             gpointer        user_data);
76 guint       mono_g_hash_table_size                 (MonoGHashTable         *hash_table);
77
78 G_END_DECLS
79
80 #endif /* __MONO_G_HASH_H__ */
81