2021-06-25 22:20:49 +00:00
|
|
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
// License, version 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2021-06-28 01:17:02 +00:00
|
|
|
#ifndef _WEECHAT_XMPP_H_
|
|
|
|
#define _WEECHAT_XMPP_H_
|
2021-06-25 22:20:49 +00:00
|
|
|
|
|
|
|
#define weechat_plugin weechat_xmpp_plugin
|
2021-06-28 01:17:02 +00:00
|
|
|
#define WEECHAT_XMPP_PLUGIN_NAME "xmpp"
|
2021-06-30 23:01:56 +00:00
|
|
|
#define WEECHAT_XMPP_PLUGIN_VERSION "0.1.1"
|
2021-07-02 04:55:43 +00:00
|
|
|
#define TIMER_INTERVAL_SEC 0.01
|
2021-06-25 22:20:49 +00:00
|
|
|
|
|
|
|
extern struct t_weechat_plugin *weechat_xmpp_plugin;
|
|
|
|
|
2021-06-28 01:17:02 +00:00
|
|
|
#endif /*WEECHAT_XMPP_H*/
|