diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-11-26 10:22:23 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-11-26 10:22:23 +0100 |
commit | af5b8ea165320708fd26d30d5e34defff468dd6e (patch) | |
tree | 6475b63fc8baa879b8f8e94d928872cf5c997790 /doc/ja | |
parent | 5fcbeb9f3e3b09c4a4493ae54543b2748152a28c (diff) | |
download | weechat-af5b8ea165320708fd26d30d5e34defff468dd6e.zip |
doc: translate doc on weechat_plugin pointer in other languages (plugin API reference)
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_plugin_api.ja.adoc | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/doc/ja/weechat_plugin_api.ja.adoc b/doc/ja/weechat_plugin_api.ja.adoc index e4b74f863..3e7553e92 100644 --- a/doc/ja/weechat_plugin_api.ja.adoc +++ b/doc/ja/weechat_plugin_api.ja.adoc @@ -47,6 +47,16 @@ GNU/Linux では ".so"、Windows (WeeChat ソースコードに含まれています)。このファイルでは WeeChat と通信する際に使う構造体や型が定義されています。 +// TRANSLATION MISSING +In order to call WeeChat functions in the format displayed in <<plugin_api>>, +the following global pointer must be declared and initialized in the function +<<_weechat_plugin_init,weechat_plugin_init>>: + +[source,C] +---- +struct t_weechat_plugin *weechat_plugin; +---- + [[macros]] === マクロ @@ -89,7 +99,9 @@ int weechat_plugin_init (struct t_weechat_plugin *plugin, 引数: -* _plugin_: WeeChat プラグイン構造体へのポインタ +// TRANSLATION MISSING +* _plugin_: WeeChat プラグイン構造体へのポインタ, used to initialize the + convenience global pointer `weechat_plugin` * _argc_: プラグインに対する引数の数 (ユーザがコマンドラインで指定) * _argv_: プラグインに対する引数 |