Blame


1 2ee05c9a 2002-03-03 alex /*
2 2ee05c9a 2002-03-03 alex * ngIRCd -- The Next Generation IRC Daemon
3 2ee05c9a 2002-03-03 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 2ee05c9a 2002-03-03 alex *
5 c7f07523 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 c7f07523 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 c7f07523 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 c7f07523 2002-12-12 alex * (at your option) any later version.
9 c7f07523 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 2ee05c9a 2002-03-03 alex *
11 8adff592 2005-03-19 fw * $Id: irc-channel.h,v 1.7 2005/03/19 18:43:48 fw Exp $
12 2ee05c9a 2002-03-03 alex *
13 c7f07523 2002-12-12 alex * IRC channel commands (header)
14 2ee05c9a 2002-03-03 alex */
15 2ee05c9a 2002-03-03 alex
16 2ee05c9a 2002-03-03 alex
17 2ee05c9a 2002-03-03 alex #ifndef __irc_channel_h__
18 2ee05c9a 2002-03-03 alex #define __irc_channel_h__
19 2ee05c9a 2002-03-03 alex
20 2ee05c9a 2002-03-03 alex
21 8adff592 2005-03-19 fw GLOBAL bool IRC_JOIN PARAMS((CLIENT *Client, REQUEST *Req ));
22 8adff592 2005-03-19 fw GLOBAL bool IRC_PART PARAMS((CLIENT *Client, REQUEST *Req ));
23 8adff592 2005-03-19 fw GLOBAL bool IRC_TOPIC PARAMS((CLIENT *Client, REQUEST *Req ));
24 2ee05c9a 2002-03-03 alex
25 8adff592 2005-03-19 fw GLOBAL bool IRC_LIST PARAMS((CLIENT *Client, REQUEST *Req ));
26 2ee05c9a 2002-03-03 alex
27 8adff592 2005-03-19 fw GLOBAL bool IRC_CHANINFO PARAMS((CLIENT *Client, REQUEST *Req ));
28 2ee05c9a 2002-03-03 alex
29 1f9ba7b3 2002-09-03 alex
30 2ee05c9a 2002-03-03 alex #endif
31 2ee05c9a 2002-03-03 alex
32 2ee05c9a 2002-03-03 alex
33 2ee05c9a 2002-03-03 alex /* -eof- */