diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-01-02 16:32:54 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-01-02 16:32:54 +0100 |
commit | 44e16c05110a19fd8c622d3aeb46179d05d8ec69 (patch) | |
tree | 6804c2803ad8d51a72150270040427484ba8993b /doc/fr | |
parent | fcfe8544410de238f6329439b2dadb6cc6a8192a (diff) | |
download | weechat-44e16c05110a19fd8c622d3aeb46179d05d8ec69.zip |
Add function "hashtable_set_pointer" in plugin API
Diffstat (limited to 'doc/fr')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.txt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.txt b/doc/fr/weechat_plugin_api.fr.txt index 817ae52d2..f94931599 100644 --- a/doc/fr/weechat_plugin_api.fr.txt +++ b/doc/fr/weechat_plugin_api.fr.txt @@ -3310,6 +3310,44 @@ weechat_printf (NULL, "liste des clés: %s", [NOTE] Cette fonction n'est pas disponible dans l'API script. +weechat_hashtable_set_pointer +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + +_Nouveau dans la version 0.3.4._ + +Affecte un pointeur à une propriété d'une hashtable. + +Prototype : + +[source,C] +---------------------------------------- +void weechat_hashtable_set_pointer (struct t_hashtable *hashtable, + const char *property, void *pointer); +---------------------------------------- + +Paramètres : + +* 'hashtable' : pointeur vers la hashtable +* 'property' et 'value' : nom de la propriété, avec sa valeur : +** 'callback_free_value' : définit la fonction "callback" pour libérer les + valeurs de la hashtable + +Exemple en C : + +[source,C] +---------------------------------------- +void +my_free_value_cb (struct t_hashtable *hashtable, const void *key, void *value) +{ + /* ... */ +} + +weechat_hashtable_set_pointer (hashtable, "callback_free_value", &my_free_value_cb); +---------------------------------------- + +[NOTE] +Cette fonction n'est pas disponible dans l'API script. + weechat_hashtable_add_to_infolist ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |