#include #include #include "tox-weechat-identities.h" #include "tox-weechat-commands.h" #include "tox-weechat-gui.h" #include "tox-weechat-friend-requests.h" #include "tox-weechat-config.h" #include "tox-weechat-json.h" #include "tox-weechat.h" WEECHAT_PLUGIN_NAME("tox"); WEECHAT_PLUGIN_DESCRIPTION("Tox protocol"); WEECHAT_PLUGIN_AUTHOR("HÃ¥vard Pettersson "); WEECHAT_PLUGIN_VERSION("0.1"); WEECHAT_PLUGIN_LICENSE("MIT"); struct t_weechat_plugin *weechat_plugin = NULL; struct t_gui_buffer *tox_main_buffer = NULL; int tox_weechat_online_status = 0; int weechat_plugin_init(struct t_weechat_plugin *plugin, int argc, char *argv[]) { weechat_plugin = plugin; tox_weechat_json_init(); tox_weechat_config_init(); tox_weechat_config_read(); tox_weechat_commands_init(); tox_weechat_gui_init(); tox_weechat_identity_autoconnect(); return WEECHAT_RC_OK; } int weechat_plugin_end(struct t_weechat_plugin *plugin) { tox_weechat_config_write(); tox_weechat_identity_free_all(); tox_weechat_json_save(); return WEECHAT_RC_OK; }