#include <assert.h>
#include <stdarg.h>
#include "windef.h"
#include "winbase.h"
#include "dictionary.h"
#include "wine/debug.h"
Go to the source code of this file.
Data Structures |
| struct | dictionary_entry |
| struct | dictionary |
Functions |
| | WINE_DEFAULT_DEBUG_CHANNEL (storage) |
| struct dictionary * | dictionary_create (comparefunc c, destroyfunc d, void *extra) |
| void | dictionary_destroy (struct dictionary *d) |
| UINT | dictionary_num_entries (struct dictionary *d) |
| static struct dictionary_entry ** | dictionary_find_internal (struct dictionary *d, const void *k) |
| void | dictionary_insert (struct dictionary *d, const void *k, const void *v) |
| BOOL | dictionary_find (struct dictionary *d, const void *k, void **value) |
| void | dictionary_remove (struct dictionary *d, const void *k) |
| void | dictionary_enumerate (struct dictionary *d, enumeratefunc e, void *closure) |