Function
GLibHRFunc
Description
Specifies the type of the function passed to
g_hash_table_foreach_remove(). It is called with each key/value
pair, together with the user_data
parameter passed to
g_hash_table_foreach_remove(). It should return TRUE
if the
key/value pair should be removed from the GHashTable
.
Parameters
key |
gpointer |
A key. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. | |
value |
gpointer |
The value associated with the key. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. | |
user_data |
gpointer |
User data passed to |
|
The argument can be NULL . | |
The data is owned by the caller of the function. |