HFunc

Specifies the type of the function passed to glib.hash_table.HashTable.foreach_. It is called with each key/value pair, together with the user_data parameter which is passed to glib.hash_table.HashTable.foreach_.

alias HFunc = void delegate
(
void* key
,
void* value
)