Blame


1 38b9cb88 2001-12-14 alex /*
2 38b9cb88 2001-12-14 alex * ngIRCd -- The Next Generation IRC Daemon
3 03d971d9 2002-01-02 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 38b9cb88 2001-12-14 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 38b9cb88 2001-12-14 alex *
11 2152e377 2003-01-15 alex * $Id: irc.h,v 1.38 2003/01/15 13:49:20 alex Exp $
12 38b9cb88 2001-12-14 alex *
13 c7f07523 2002-12-12 alex * IRC commands (header)
14 38b9cb88 2001-12-14 alex */
15 38b9cb88 2001-12-14 alex
16 38b9cb88 2001-12-14 alex
17 38b9cb88 2001-12-14 alex #ifndef __irc_h__
18 38b9cb88 2001-12-14 alex #define __irc_h__
19 38b9cb88 2001-12-14 alex
20 38b9cb88 2001-12-14 alex
21 f86bbd71 2002-11-24 alex GLOBAL BOOLEAN IRC_ERROR PARAMS(( CLIENT *Client, REQUEST *Req ));
22 f86bbd71 2002-11-24 alex GLOBAL BOOLEAN IRC_KILL PARAMS(( CLIENT *Client, REQUEST *Req ));
23 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_NOTICE PARAMS(( CLIENT *Client, REQUEST *Req ));
24 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_PRIVMSG PARAMS(( CLIENT *Client, REQUEST *Req ));
25 42c4e6c7 2003-01-13 alex GLOBAL BOOLEAN IRC_TRACE PARAMS(( CLIENT *Client, REQUEST *Req ));
26 2152e377 2003-01-15 alex GLOBAL BOOLEAN IRC_HELP PARAMS(( CLIENT *Client, REQUEST *Req ));
27 b61087ba 2001-12-29 alex
28 804b1ec4 2001-12-31 alex
29 38b9cb88 2001-12-14 alex #endif
30 38b9cb88 2001-12-14 alex
31 38b9cb88 2001-12-14 alex
32 38b9cb88 2001-12-14 alex /* -eof- */