diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-14 09:19:03 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-14 09:19:03 +0100 |
commit | f4606ef0a9e3a55f4937b4443b7c0629803be029 (patch) | |
tree | 77906d68112fa42d75d734be34054ebe1d8bec74 /doc/it/weechat_plugin_api.it.txt | |
parent | b530aa5f5aab1f54f24fc76123ac36439b235ea0 (diff) | |
download | weechat-f4606ef0a9e3a55f4937b4443b7c0629803be029.zip |
doc: add function hashtable_dup in plugin API reference
Diffstat (limited to 'doc/it/weechat_plugin_api.it.txt')
-rw-r--r-- | doc/it/weechat_plugin_api.it.txt | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/it/weechat_plugin_api.it.txt b/doc/it/weechat_plugin_api.it.txt index 0cbe26703..40e6e31cd 100644 --- a/doc/it/weechat_plugin_api.it.txt +++ b/doc/it/weechat_plugin_api.it.txt @@ -3535,6 +3535,39 @@ weechat_hashtable_map_string (hashtable, &map_cb, NULL); [NOTE] Questa funzione non è disponibile nelle API per lo scripting. +==== weechat_hashtable_dup + +_WeeChat ≥ 0.4.4._ + +// TRANSLATION MISSING +Duplicate a hashtable. + +Prototipo: + +[source,C] +---- +struct t_hashtable *hashtable_dup (struct t_hashtable *hashtable); +---- + +Argomenti: + +* 'hashtable': puntatore alla tabella hash + +Valore restituito: + +// TRANSLATION MISSING +* duplicated hashtable + +Esempio in C: + +[source,C] +---- +struct t_hashtable *new_hashtable = weechat_hashtable_dup (hashtable); +---- + +[NOTE] +Questa funzione non è disponibile nelle API per lo scripting. + ==== weechat_hashtable_get_integer _WeeChat ≥ 0.3.3._ |