mirror of
https://github.com/weechat/weechat.git
synced 2026-06-25 04:16:38 +02:00
30 lines
1.0 KiB
C
30 lines
1.0 KiB
C
/*
|
|
* Copyright (c) 2003-2010 by FlashCode <flashcode@flashtux.org>
|
|
* See README for License detail, AUTHORS for developers list.
|
|
*
|
|
* This program 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.
|
|
*
|
|
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
#ifndef __WEECHAT_IRC_H
|
|
#define __WEECHAT_IRC_H 1
|
|
|
|
#define weechat_plugin weechat_irc_plugin
|
|
#define IRC_PLUGIN_NAME "irc"
|
|
|
|
extern struct t_weechat_plugin *weechat_irc_plugin;
|
|
extern struct t_hook *irc_hook_timer_check_away;
|
|
|
|
#endif /* irc.h */
|