tox-weechat/src/tox-weechat.c

50 lines
1.1 KiB
C
Raw Normal View History

2014-09-02 11:59:38 +00:00
#include <stdlib.h>
2014-09-02 10:37:00 +00:00
#include <weechat/weechat-plugin.h>
#include "tox-weechat-identities.h"
2014-09-02 16:47:08 +00:00
#include "tox-weechat-commands.h"
#include "tox-weechat-gui.h"
#include "tox-weechat-friend-requests.h"
2014-09-13 10:22:26 +00:00
#include "tox-weechat-config.h"
#include "tox-weechat-json.h"
2014-09-02 11:59:38 +00:00
#include "tox-weechat.h"
2014-09-02 10:37:00 +00:00
WEECHAT_PLUGIN_NAME("tox");
WEECHAT_PLUGIN_DESCRIPTION("Tox protocol");
WEECHAT_PLUGIN_AUTHOR("Håvard Pettersson <haavard.pettersson@gmail.com>");
WEECHAT_PLUGIN_VERSION("0.1");
WEECHAT_PLUGIN_LICENSE("MIT");
2014-09-02 10:37:00 +00:00
2014-09-02 11:59:38 +00:00
struct t_weechat_plugin *weechat_plugin = NULL;
2014-09-02 16:47:08 +00:00
struct t_gui_buffer *tox_main_buffer = NULL;
int tox_weechat_online_status = 0;
2014-09-02 11:59:38 +00:00
2014-09-02 10:37:00 +00:00
int
2014-09-02 11:59:38 +00:00
weechat_plugin_init(struct t_weechat_plugin *plugin, int argc, char *argv[])
2014-09-02 10:37:00 +00:00
{
2014-09-02 11:59:38 +00:00
weechat_plugin = plugin;
tox_weechat_json_init();
2014-09-13 10:22:26 +00:00
tox_weechat_config_init();
tox_weechat_config_read();
2014-09-02 16:47:08 +00:00
tox_weechat_commands_init();
tox_weechat_gui_init();
2014-09-02 11:59:38 +00:00
2014-09-13 10:22:26 +00:00
tox_weechat_identity_autoconnect();
2014-09-02 10:37:00 +00:00
return WEECHAT_RC_OK;
}
int
weechat_plugin_end(struct t_weechat_plugin *plugin)
{
2014-09-13 10:22:26 +00:00
tox_weechat_config_write();
tox_weechat_identity_free_all();
tox_weechat_json_save();
2014-09-02 16:47:08 +00:00
2014-09-02 10:37:00 +00:00
return WEECHAT_RC_OK;
}