tox-weechat/src/twc.h

39 lines
1.2 KiB
C
Raw Normal View History

2014-09-18 16:55:52 +00:00
/*
2018-04-12 21:42:34 +00:00
* Copyright (c) 2018 Håvard Pettersson <mail@haavard.me>
2014-09-18 16:55:52 +00:00
*
* This file is part of Tox-WeeChat.
*
* Tox-WeeChat is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Tox-WeeChat is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Tox-WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
2014-09-02 10:37:00 +00:00
#ifndef TOX_WEECHAT_H
#define TOX_WEECHAT_H
2014-09-02 11:59:38 +00:00
extern struct t_weechat_plugin *weechat_plugin;
/** Return codes used throughout Tox-WeeChat. */
2015-04-09 22:08:40 +00:00
enum t_twc_rc
{
2016-05-11 07:31:02 +00:00
TWC_RC_OK = 0,
/* Generic error return code. */
2016-05-11 07:31:02 +00:00
TWC_RC_ERROR = -1,
/* Malloc error return code. */
2016-05-11 07:31:02 +00:00
TWC_RC_ERROR_MALLOC = -2,
2015-04-09 19:39:48 +00:00
};
#define TWC_MAX_FRIEND_MESSAGE_LENGTH (TOX_MAX_MESSAGE_LENGTH - 1)
#define TWC_MAX_GROUP_MESSAGE_LENGTH (TOX_MAX_MESSAGE_LENGTH - 16)
2014-09-28 01:29:34 +00:00
#endif /* TOX_WEECHAT_H */