diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-24 09:25:04 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2016-03-24 09:25:04 +0100 |
commit | 17d20b9ca65d34fa014a1b97aa7afd75f6a04183 (patch) | |
tree | 2edb4a937cd51192c95719316b4268ccebf17f5a /doc/fr/weechat_plugin_api.fr.asciidoc | |
parent | 5244a707cb8bdfc7b19a1505938d5d79b44aef66 (diff) | |
download | weechat-17d20b9ca65d34fa014a1b97aa7afd75f6a04183.zip |
doc: add argument "subplugin" in function unhook_all (plugin API reference)
Diffstat (limited to 'doc/fr/weechat_plugin_api.fr.asciidoc')
-rw-r--r-- | doc/fr/weechat_plugin_api.fr.asciidoc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/fr/weechat_plugin_api.fr.asciidoc b/doc/fr/weechat_plugin_api.fr.asciidoc index 8836cc840..e59953951 100644 --- a/doc/fr/weechat_plugin_api.fr.asciidoc +++ b/doc/fr/weechat_plugin_api.fr.asciidoc @@ -10596,14 +10596,19 @@ Prototype : [source,C] ---- -void weechat_unhook_all (); +void weechat_unhook_all (const char *subplugin); ---- +Paramètres : + +* 'subplugin' : si non NULL, décrocher uniquement les "hooks" qui ont ce + "subplugin" défini (ce paramètre n'est pas disponible dans l'API script) + Exemple en C : [source,C] ---- -weechat_unhook_all (); +weechat_unhook_all (NULL); ---- Script (Python) : |