summaryrefslogtreecommitdiffstats
path: root/src/hashset.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2004-07-11 16:59:22 +0000
committerLennart Poettering <lennart@poettering.net>2004-07-11 16:59:22 +0000
commita96ed347a30fdc7494b96542c0ad8a19ef178b25 (patch)
tree960d610f532e3e8a8c7e5aecd375f8601acfc647 /src/hashset.h
parentccfd55420ebec191d7a3ed842ecb2740ceeb76ba (diff)
rename hashset to hashmap
add module arguments parse in modargs.c make module-pipe-sink use it git-svn-id: file:///home/lennart/svn/public/pulseaudio/trunk@61 fefdeb5f-60dc-0310-8127-8f9354f1896f
Diffstat (limited to 'src/hashset.h')
-rw-r--r--src/hashset.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/hashset.h b/src/hashset.h
deleted file mode 100644
index a6ece8bf..00000000
--- a/src/hashset.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#ifndef foohashsethfoo
-#define foohashsethfoo
-
-struct pa_hashset;
-
-struct pa_hashset *pa_hashset_new(unsigned (*hash_func) (const void *p), int (*compare_func) (const void*a, const void*b));
-void pa_hashset_free(struct pa_hashset*, void (*free_func)(void *p, void *userdata), void *userdata);
-
-int pa_hashset_put(struct pa_hashset *h, const void *key, void *value);
-void* pa_hashset_get(struct pa_hashset *h, const void *key);
-
-int pa_hashset_remove(struct pa_hashset *h, const void *key);
-
-unsigned pa_hashset_ncontents(struct pa_hashset *h);
-
-#endif