summaryrefslogtreecommitdiff
path: root/doc/it/weechat_plugin_api.it.adoc
diff options
context:
space:
mode:
authorAndrew Potter <agpotter@gmail.com>2019-08-10 12:55:43 +0200
committerSébastien Helleu <flashcode@flashtux.org>2019-08-10 12:55:43 +0200
commit0957231d300b3fa232fc00c691f2c218822ab081 (patch)
treeacf1384b30a335d6f70575cb6bd5c8b3b893cc84 /doc/it/weechat_plugin_api.it.adoc
parent464d31155a6fcb7e205f623db4f9ad04154b4f64 (diff)
downloadweechat-0957231d300b3fa232fc00c691f2c218822ab081.zip
api: add function list_user_data (issue #666)
Diffstat (limited to 'doc/it/weechat_plugin_api.it.adoc')
-rw-r--r--doc/it/weechat_plugin_api.it.adoc33
1 files changed, 33 insertions, 0 deletions
diff --git a/doc/it/weechat_plugin_api.it.adoc b/doc/it/weechat_plugin_api.it.adoc
index 8c2ae012d..f45eb124f 100644
--- a/doc/it/weechat_plugin_api.it.adoc
+++ b/doc/it/weechat_plugin_api.it.adoc
@@ -4230,6 +4230,39 @@ value = weechat.list_string(item)
weechat.prnt("", "valore dell'elemento: %s" % weechat.list_string(item))
----
+==== list_user_data
+
+_WeeChat ≥ 2.6._
+
+// TRANSLATION MISSING
+Return pointer to the user data of an item.
+
+Prototipo:
+
+[source,C]
+----
+void *weechat_list_user_data (struct t_weelist_item *item);
+----
+
+Argomenti:
+
+* _item_: puntatore all'elemento
+
+Valore restituito:
+
+// TRANSLATION MISSING
+* pointer to the user data of item
+
+Esempio in C:
+
+[source,C]
+----
+weechat_printf (NULL, "user data of item: 0x%lx", weechat_list_user_data (item));
+----
+
+[NOTE]
+Questa funzione non è disponibile nelle API per lo scripting.
+
==== list_size
Restituisce la dimensione della lista (numero di elementi).