aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_container_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2009-09-05 13:19:01 +0000
committerChristian Grothoff <christian@grothoff.org>2009-09-05 13:19:01 +0000
commit32e19a47f4e6bd369e99e3d292be7b01c009edac (patch)
tree7a43fdac918d23415b515d47ff837c28ede108fd /src/include/gnunet_container_lib.h
parent3de7118c925ac03b973655af6bfedc606aa097b4 (diff)
downloadgnunet-32e19a47f4e6bd369e99e3d292be7b01c009edac.tar.gz
gnunet-32e19a47f4e6bd369e99e3d292be7b01c009edac.zip
seach
Diffstat (limited to 'src/include/gnunet_container_lib.h')
-rw-r--r--src/include/gnunet_container_lib.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/gnunet_container_lib.h b/src/include/gnunet_container_lib.h
index 087324174..279d7df59 100644
--- a/src/include/gnunet_container_lib.h
+++ b/src/include/gnunet_container_lib.h
@@ -455,15 +455,16 @@ enum GNUNET_CONTAINER_MultiHashMapOption
455/** 455/**
456 * Iterator over HashCodes. 456 * Iterator over HashCodes.
457 * 457 *
458 * @param cls closure
458 * @param key current key code 459 * @param key current key code
459 * @param value value in the hash map 460 * @param value value in the hash map
460 * @param cls client-defined argument
461 * @return GNUNET_YES if we should continue to 461 * @return GNUNET_YES if we should continue to
462 * iterate, 462 * iterate,
463 * GNUNET_NO if not. 463 * GNUNET_NO if not.
464 */ 464 */
465typedef int (*GNUNET_CONTAINER_HashMapIterator) (const GNUNET_HashCode * key, 465typedef int (*GNUNET_CONTAINER_HashMapIterator) (void *cls,
466 void *value, void *cls); 466 const GNUNET_HashCode * key,
467 void *value);
467 468
468 469
469/** 470/**