Merge pull request #268 from pcc/menudeactivate
[mono.git] / mono / utils / mono-property-hash.h
1 /*
2  * mono-property-hash.h: Hash table for (object, property) pairs
3  *
4  * Author:
5  *      Zoltan Varga (vargaz@gmail.com)
6  *
7  * (C) 2008 Novell, Inc
8  */
9
10 /*
11  * This is similar to the GLib hash table, but stores (object, property) pairs. It can
12  * be used to store rarely used fields of runtime structures, decreasing memory usage.
13  * The memory required to store one property is the size of one hash node, about 3
14  * pointers.
15  */
16
17 #ifndef _MONO_PROPERTY_HASH_H_
18 #define _MONO_PROPERTY_HASH_H_
19
20 #include <glib.h>
21 #include <mono/utils/mono-publib.h>
22
23 G_BEGIN_DECLS
24
25 typedef struct _MonoPropertyHash MonoPropertyHash;
26
27 MONO_API MonoPropertyHash* mono_property_hash_new (void);
28
29 MONO_API void mono_property_hash_destroy (MonoPropertyHash *hash);
30
31 MONO_API void mono_property_hash_insert (MonoPropertyHash *hash, gpointer object, guint32 property,
32                                                                 gpointer value);
33
34 /* Remove all properties of OBJECT */
35 MONO_API void mono_property_hash_remove_object (MonoPropertyHash *hash, gpointer object);
36
37 MONO_API gpointer mono_property_hash_lookup (MonoPropertyHash *hash, gpointer object, guint32 property);
38
39 G_END_DECLS
40
41 #endif