diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2017-12-28 17:21:51 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2018-01-06 14:07:35 +0100 |
commit | 414959a474eb80d917e384147c95fe1ea35b8e62 (patch) | |
tree | 324c360ae0955d7fb8251d507069a919615fcc9b /src/plugins/perl/weechat-perl.h | |
parent | 4884ee66342687e9b57504bc151ca5745bde9c7c (diff) | |
download | weechat-414959a474eb80d917e384147c95fe1ea35b8e62.zip |
scripts: add "eval" option in script commands and info "xxx_eval" (issue #128)
For now this works only in python, perl, ruby and guile.
Diffstat (limited to 'src/plugins/perl/weechat-perl.h')
-rw-r--r-- | src/plugins/perl/weechat-perl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/perl/weechat-perl.h b/src/plugins/perl/weechat-perl.h index 8bee709cf..318f28ca5 100644 --- a/src/plugins/perl/weechat-perl.h +++ b/src/plugins/perl/weechat-perl.h @@ -41,6 +41,7 @@ extern HV *weechat_perl_hashtable_to_hash (struct t_hashtable *hashtable); extern struct t_hashtable *weechat_perl_hash_to_hashtable (SV *hash, int size, const char *type_keys, const char *type_values); +extern XS (weechat_perl_output); extern void *weechat_perl_exec (struct t_plugin_script *script, int ret_type, const char *function, const char *format, void **argv); |