tox-weechat/src/twc.h

37 lines
1.0 KiB
C
Raw Normal View History

2014-09-18 16:55:52 +00:00
/*
2016-05-10 10:04:24 +00:00
* Copyright (c) 2016 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;
2015-04-09 19:39:48 +00:00
/// Return codes used throughout Tox-WeeChat.
2015-04-09 22:08:40 +00:00
enum t_twc_rc
{
2015-04-09 19:39:48 +00:00
TWC_RC_OK,
/// Generic error return code.
TWC_RC_ERROR,
/// Malloc error return code.
TWC_RC_ERROR_MALLOC,
};
2014-09-02 10:37:00 +00:00
#endif // TOX_WEECHAT_H
2014-09-28 01:29:34 +00:00