1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 15:53:12 +02:00

Changes in plugins and scripts plugins:

- get_info("version") now returns only version
- added get_config() function to read config options
This commit is contained in:
Sebastien Helleu
2005-10-17 14:30:03 +00:00
parent b2ec60110c
commit 357d7c5a2f
8 changed files with 502 additions and 92 deletions
+39
View File
@@ -451,6 +451,44 @@ static XS (XS_weechat_get_dcc_info)
XSRETURN (dcc_count);
}
/*
* weechat::get_config: get value of a config option
*/
static XS (XS_weechat_get_config)
{
char *option, *value;
unsigned int integer;
dXSARGS;
/* make gcc happy */
(void) cv;
if (items != 1)
{
perl_plugin->printf_server (perl_plugin,
"Perl error: wrong parameters for "
"\"get_config\" function");
XSRETURN_NO;
}
option = SvPV (ST (0), integer);
if (option)
{
value = perl_plugin->get_config (perl_plugin, option);
if (value)
{
XST_mPV (0, value);
free (value);
}
else
XST_mPV (0, "");
}
XSRETURN (1);
}
/*
* weechat_perl_xs_init: initialize subroutines
*/
@@ -468,6 +506,7 @@ weechat_perl_xs_init (pTHX)
newXS ("weechat::add_command_handler", XS_weechat_add_command_handler, "weechat");
newXS ("weechat::get_info", XS_weechat_get_info, "weechat");
newXS ("weechat::get_dcc_info", XS_weechat_get_dcc_info, "weechat");
newXS ("weechat::get_config", XS_weechat_get_config, "weechat");
}
/*