mirror of
https://github.com/weechat/weechat.git
synced 2026-06-12 14:14:48 +02:00
Fix return value of callback for hashtable_map in plugin API reference
This commit is contained in:
@@ -3156,10 +3156,10 @@ Prototype:
|
||||
[source,C]
|
||||
----------------------------------------
|
||||
void hashtable_map (struct t_hashlist *hashlist,
|
||||
int (*callback_map)(void *data,
|
||||
struct t_hashtable *hashtable,
|
||||
const void *key,
|
||||
const void *value),
|
||||
void (*callback_map)(void *data,
|
||||
struct t_hashtable *hashtable,
|
||||
const void *key,
|
||||
const void *value),
|
||||
void *callback_map_data);
|
||||
----------------------------------------
|
||||
|
||||
|
||||
@@ -3188,10 +3188,10 @@ Prototype :
|
||||
[source,C]
|
||||
----------------------------------------
|
||||
void hashtable_map (struct t_hashlist *hashlist,
|
||||
int (*callback_map)(void *data,
|
||||
struct t_hashtable *hashtable,
|
||||
const void *key,
|
||||
const void *value),
|
||||
void (*callback_map)(void *data,
|
||||
struct t_hashtable *hashtable,
|
||||
const void *key,
|
||||
const void *value),
|
||||
void *callback_map_data);
|
||||
----------------------------------------
|
||||
|
||||
|
||||
@@ -3146,10 +3146,10 @@ Prototipo:
|
||||
[source,C]
|
||||
----------------------------------------
|
||||
void hashtable_map (struct t_hashlist *hashlist,
|
||||
int (*callback_map)(void *data,
|
||||
struct t_hashtable *hashtable,
|
||||
const void *key,
|
||||
const void *value),
|
||||
void (*callback_map)(void *data,
|
||||
struct t_hashtable *hashtable,
|
||||
const void *key,
|
||||
const void *value),
|
||||
void *callback_map_data);
|
||||
----------------------------------------
|
||||
|
||||
|
||||
Reference in New Issue
Block a user