2014-09-02 13:59:38 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
#include <weechat/weechat-plugin.h>
|
|
|
|
|
2014-09-02 13:59:38 +02:00
|
|
|
#include "tox-weechat-tox.h"
|
2014-09-02 18:47:08 +02:00
|
|
|
#include "tox-weechat-commands.h"
|
|
|
|
#include "tox-weechat-gui.h"
|
|
|
|
#include "tox-weechat-friend-requests.h"
|
2014-09-02 13:59:38 +02:00
|
|
|
|
|
|
|
#include "tox-weechat.h"
|
|
|
|
|
2014-09-02 12:37:00 +02: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");
|
2014-09-02 21:18:23 +02:00
|
|
|
WEECHAT_PLUGIN_LICENSE("MIT");
|
2014-09-02 12:37:00 +02:00
|
|
|
|
2014-09-02 13:59:38 +02:00
|
|
|
struct t_weechat_plugin *weechat_plugin = NULL;
|
2014-09-02 18:47:08 +02:00
|
|
|
struct t_gui_buffer *tox_main_buffer = NULL;
|
2014-09-02 13:59:38 +02:00
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
int
|
2014-09-02 13:59:38 +02:00
|
|
|
weechat_plugin_init(struct t_weechat_plugin *plugin, int argc, char *argv[])
|
2014-09-02 12:37:00 +02:00
|
|
|
{
|
2014-09-02 13:59:38 +02:00
|
|
|
weechat_plugin = plugin;
|
2014-09-02 18:47:08 +02:00
|
|
|
tox_main_buffer = weechat_buffer_new("tox", NULL, NULL, NULL, NULL);
|
2014-09-02 13:59:38 +02:00
|
|
|
|
|
|
|
tox_weechat_tox_init();
|
2014-09-02 18:47:08 +02:00
|
|
|
tox_weechat_commands_init();
|
|
|
|
tox_weechat_gui_init();
|
|
|
|
tox_weechat_friend_requests_init();
|
2014-09-02 13:59:38 +02:00
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
return WEECHAT_RC_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
weechat_plugin_end(struct t_weechat_plugin *plugin)
|
|
|
|
{
|
2014-09-02 18:47:08 +02:00
|
|
|
tox_weechat_tox_free();
|
|
|
|
tox_weechat_friend_requests_free();
|
|
|
|
|
2014-09-02 12:37:00 +02:00
|
|
|
return WEECHAT_RC_OK;
|
|
|
|
}
|