Stuff.
This commit is contained in:
parent
1edd562174
commit
8fdcc5173f
@ -1,15 +1,26 @@
|
|||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
#include <weechat/weechat-plugin.h>
|
#include <weechat/weechat-plugin.h>
|
||||||
|
|
||||||
|
#include "tox-weechat-tox.h"
|
||||||
|
|
||||||
|
#include "tox-weechat.h"
|
||||||
|
|
||||||
WEECHAT_PLUGIN_NAME("tox");
|
WEECHAT_PLUGIN_NAME("tox");
|
||||||
WEECHAT_PLUGIN_DESCRIPTION("Tox protocol");
|
WEECHAT_PLUGIN_DESCRIPTION("Tox protocol");
|
||||||
WEECHAT_PLUGIN_AUTHOR("Håvard Pettersson <haavard.pettersson@gmail.com>");
|
WEECHAT_PLUGIN_AUTHOR("Håvard Pettersson <haavard.pettersson@gmail.com>");
|
||||||
WEECHAT_PLUGIN_VERSION("0.1");
|
WEECHAT_PLUGIN_VERSION("0.1");
|
||||||
WEECHAT_PLUGIN_LICENSE("GPL3");
|
WEECHAT_PLUGIN_LICENSE("GPL3");
|
||||||
|
|
||||||
|
struct t_weechat_plugin *weechat_plugin = NULL;
|
||||||
|
|
||||||
int
|
int
|
||||||
weechat_plugin_init(struct t_weechat_plugin *plugin,
|
weechat_plugin_init(struct t_weechat_plugin *plugin, int argc, char *argv[])
|
||||||
int argc, char *argv[])
|
|
||||||
{
|
{
|
||||||
|
weechat_plugin = plugin;
|
||||||
|
|
||||||
|
tox_weechat_tox_init();
|
||||||
|
|
||||||
return WEECHAT_RC_OK;
|
return WEECHAT_RC_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
#ifndef TOX_WEECHAT_H
|
#ifndef TOX_WEECHAT_H
|
||||||
#define TOX_WEECHAT_H
|
#define TOX_WEECHAT_H
|
||||||
|
|
||||||
|
extern struct t_weechat_plugin *weechat_plugin;
|
||||||
|
|
||||||
#endif // TOX_WEECHAT_H
|
#endif // TOX_WEECHAT_H
|
||||||
|
Loading…
Reference in New Issue
Block a user