diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-05-30 20:23:01 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2017-05-30 20:28:01 +0200 |
commit | f6a8c28d2dcf4d4ed6f87e7e94574b331455b40a (patch) | |
tree | d3c76b7ab7b439c54bf08050cfa63dca66ea994a /src/plugins | |
parent | f131b9f7defeee9e48eb8ed077d491bcdfcf0e03 (diff) | |
download | weechat-f6a8c28d2dcf4d4ed6f87e7e94574b331455b40a.zip |
api: add function config_option_get_string in plugin API
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/plugin.c | 1 | ||||
-rw-r--r-- | src/plugins/weechat-plugin.h | 6 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index 326df8edf..bb2c25e7d 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -728,6 +728,7 @@ plugin_load (const char *filename, int init_plugin, int argc, char **argv) new_plugin->config_option_set_null = &config_file_option_set_null; new_plugin->config_option_unset = &config_file_option_unset; new_plugin->config_option_rename = &config_file_option_rename; + new_plugin->config_option_get_string = &config_file_option_get_string; new_plugin->config_option_get_pointer = &config_file_option_get_pointer; new_plugin->config_option_is_null = &config_file_option_is_null; new_plugin->config_option_default_is_null = &config_file_option_default_is_null; diff --git a/src/plugins/weechat-plugin.h b/src/plugins/weechat-plugin.h index 2a44d692d..9d3fe101c 100644 --- a/src/plugins/weechat-plugin.h +++ b/src/plugins/weechat-plugin.h @@ -59,7 +59,7 @@ struct timeval; * please change the date with current one; for a second change at same * date, increment the 01, otherwise please keep 01. */ -#define WEECHAT_PLUGIN_API_VERSION "20170401-01" +#define WEECHAT_PLUGIN_API_VERSION "20170530-01" /* macros for defining plugin infos */ #define WEECHAT_PLUGIN_NAME(__name) \ @@ -561,6 +561,8 @@ struct t_weechat_plugin int (*config_option_unset) (struct t_config_option *option); void (*config_option_rename) (struct t_config_option *option, const char *new_name); + const char *(*config_option_get_string) (struct t_config_option *option, + const char *property); void *(*config_option_get_pointer) (struct t_config_option *option, const char *property); int (*config_option_is_null) (struct t_config_option *option); @@ -1492,6 +1494,8 @@ extern int weechat_plugin_end (struct t_weechat_plugin *plugin); (weechat_plugin->config_option_unset)(__option) #define weechat_config_option_rename(__option, __new_name) \ (weechat_plugin->config_option_rename)(__option, __new_name) +#define weechat_config_option_get_string(__option, __property) \ + (weechat_plugin->config_option_get_string)(__option, __property) #define weechat_config_option_get_pointer(__option, __property) \ (weechat_plugin->config_option_get_pointer)(__option, __property) #define weechat_config_option_is_null(__option) \ |