diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2013-08-04 08:56:56 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2013-08-04 08:56:56 +0200 |
commit | dc878c5b69d498e3edb225e1997455510579deed (patch) | |
tree | 2c6dbd6bb5640ce17d23b937463310656ec7f126 /src/plugins/weechat-plugin.h | |
parent | b94a1ce59baa99e2076c83d82f25cbe5d9a7c19b (diff) | |
download | weechat-dc878c5b69d498e3edb225e1997455510579deed.zip |
api: add argument "options" in function string_eval_expression, add option "-c" for command /eval (to evaluate a condition)
Diffstat (limited to 'src/plugins/weechat-plugin.h')
-rw-r--r-- | src/plugins/weechat-plugin.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/plugins/weechat-plugin.h b/src/plugins/weechat-plugin.h index 82873d171..d0d672616 100644 --- a/src/plugins/weechat-plugin.h +++ b/src/plugins/weechat-plugin.h @@ -52,7 +52,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 "20130727-01" +#define WEECHAT_PLUGIN_API_VERSION "20130804-01" /* macros for defining plugin infos */ #define WEECHAT_PLUGIN_NAME(__name) \ @@ -256,7 +256,8 @@ struct t_weechat_plugin const char *(*string_input_for_buffer) (const char *string); char *(*string_eval_expression )(const char *expr, struct t_hashtable *pointers, - struct t_hashtable *extra_vars); + struct t_hashtable *extra_vars, + struct t_hashtable *options); /* UTF-8 strings */ int (*utf8_has_8bits) (const char *string); @@ -1020,9 +1021,9 @@ extern int weechat_plugin_end (struct t_weechat_plugin *plugin); #define weechat_string_input_for_buffer(__string) \ weechat_plugin->string_input_for_buffer(__string) #define weechat_string_eval_expression(__expr, __pointers, \ - __extra_vars) \ + __extra_vars, __options) \ weechat_plugin->string_eval_expression(__expr, __pointers, \ - __extra_vars) \ + __extra_vars, __options) /* UTF-8 strings */ #define weechat_utf8_has_8bits(__string) \ |