Small improvement to eina_hash_free_cb_set documentation.

SVN revision: 73822
This commit is contained in:
Jonas M. Gastal 2012-07-13 17:27:24 +00:00
parent 379566ece7
commit 6f2b6f9611
1 changed files with 6 additions and 2 deletions

View File

@ -357,9 +357,13 @@ EAPI Eina_Hash *eina_hash_new(Eina_Key_Length key_length_cb,
* @param hash The given hash table
* @param data_free_cb The function called on each value when the hash
* table is freed, or when an item is deleted from it. @c NULL can be passed as
* callback.
* callback to remove an existing callback.
*
* The argument received by @p data_free_cb will be that data of the item being
* removed.
*
* @since 1.1
* See @ref eina_hash_new.
* @see eina_hash_new.
*/
EAPI void eina_hash_free_cb_set(Eina_Hash *hash, Eina_Free_Cb data_free_cb) EINA_ARG_NONNULL(1);