diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-12 07:32:15 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-08-12 07:32:15 +0200 |
commit | e4fb9a4a4bda945127f3a092cf4fb33e82abb81d (patch) | |
tree | c688fcad4673d5df19533666fb8670e08f9aa72e /doc/fr/weechat_plugin_api.fr.asciidoc | |
parent | 62d891aea9c2ea105a21be7834dbbb96b7680083 (diff) | |
download | weechat-e4fb9a4a4bda945127f3a092cf4fb33e82abb81d.zip |
doc: add example with "callback_free_key" in function hashtable_set_pointer (plugin API reference)
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.asciidoc')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index ec5a50b2a..1a6052238 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -3870,7 +3870,14 @@ my_free_value_cb (struct t_hashtable *hashtable, const void *key, void *value) /* ... */ } +void +my_free_key_cb (struct t_hashtable *hashtable, void *key) +{ + /* ... */ +} + weechat_hashtable_set_pointer (hashtable, "callback_free_value", &my_free_value_cb); +weechat_hashtable_set_pointer (hashtable, "callback_free_key", &my_free_key_cb); ---- [NOTE] |