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 c7f07523 2002-12-12 alex * $Id: irc-server.h,v 1.4 2002/12/12 12:23:43 alex Exp $
12 2ee05c9a 2002-03-03 alex *
13 c7f07523 2002-12-12 alex * IRC commands for server links (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_server_h__
18 2ee05c9a 2002-03-03 alex #define __irc_server_h__
19 2ee05c9a 2002-03-03 alex
20 2ee05c9a 2002-03-03 alex
21 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_SERVER PARAMS((CLIENT *Client, REQUEST *Req ));
22 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_NJOIN PARAMS((CLIENT *Client, REQUEST *Req ));
23 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_SQUIT PARAMS((CLIENT *Client, REQUEST *Req ));
24 2ee05c9a 2002-03-03 alex
25 2ee05c9a 2002-03-03 alex
26 2ee05c9a 2002-03-03 alex #endif
27 2ee05c9a 2002-03-03 alex
28 2ee05c9a 2002-03-03 alex
29 2ee05c9a 2002-03-03 alex /* -eof- */