diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2005-05-01 19:03:15 +0000 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2005-05-01 19:03:15 +0000 |
commit | c6fc8bd1479a046e5a0e9ba5f344ebfdc9ce4bd1 (patch) | |
tree | 3ccfc089d00b4613bca9a058da1139c177b75b5c /src | |
parent | eda55fbdb41a695dc4a5d511f2ccf20a3a99470f (diff) | |
download | weechat-c6fc8bd1479a046e5a0e9ba5f344ebfdc9ce4bd1.zip |
Added Python plugin support
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/plugins.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/plugins.h b/src/plugins/plugins.h index 854c6a9c3..1fc773d69 100644 --- a/src/plugins/plugins.h +++ b/src/plugins/plugins.h @@ -59,6 +59,10 @@ extern t_plugin_handler *last_plugin_cmd_handler; extern t_plugin_script *perl_scripts; #endif +#ifdef PLUGIN_PYTHON +extern t_plugin_script *python_scripts; +#endif + extern void plugin_auto_load (int, char *); extern void plugin_init (); extern void plugin_load (int, char *); |