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 47ca178a 2007-11-21 alex * $Id: irc-server.h,v 1.6 2007/11/21 12:16:36 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 8adff592 2005-03-19 fw GLOBAL bool IRC_SERVER PARAMS((CLIENT *Client, REQUEST *Req ));
22 8adff592 2005-03-19 fw GLOBAL bool IRC_NJOIN PARAMS((CLIENT *Client, REQUEST *Req ));
23 8adff592 2005-03-19 fw GLOBAL bool IRC_SQUIT PARAMS((CLIENT *Client, REQUEST *Req ));
24 2ee05c9a 2002-03-03 alex
25 47ca178a 2007-11-21 alex GLOBAL bool IRC_ENDOFMOTD_Server PARAMS((CLIENT *Client));
26 2ee05c9a 2002-03-03 alex
27 47ca178a 2007-11-21 alex
28 2ee05c9a 2002-03-03 alex #endif
29 2ee05c9a 2002-03-03 alex
30 2ee05c9a 2002-03-03 alex
31 2ee05c9a 2002-03-03 alex /* -eof- */