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 3e026ded 2002-12-31 alex * $Id: irc-oper.h,v 1.10 2002/12/31 16:11:06 alex Exp $
12 2ee05c9a 2002-03-03 alex *
13 c7f07523 2002-12-12 alex * IRC operator 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_oper_h__
18 2ee05c9a 2002-03-03 alex #define __irc_oper_h__
19 2ee05c9a 2002-03-03 alex
20 2ee05c9a 2002-03-03 alex
21 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_OPER PARAMS((CLIENT *Client, REQUEST *Req ));
22 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_DIE PARAMS((CLIENT *Client, REQUEST *Req ));
23 4eb57b59 2002-11-22 alex GLOBAL BOOLEAN IRC_REHASH PARAMS((CLIENT *Client, REQUEST *Req ));
24 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_RESTART PARAMS((CLIENT *Client, REQUEST *Req ));
25 1256f347 2002-09-03 alex GLOBAL BOOLEAN IRC_CONNECT PARAMS((CLIENT *Client, REQUEST *Req ));
26 3e026ded 2002-12-31 alex GLOBAL BOOLEAN IRC_DISCONNECT PARAMS((CLIENT *Client, REQUEST *Req ));
27 2ee05c9a 2002-03-03 alex
28 2ee05c9a 2002-03-03 alex
29 2ee05c9a 2002-03-03 alex #endif
30 2ee05c9a 2002-03-03 alex
31 2ee05c9a 2002-03-03 alex
32 2ee05c9a 2002-03-03 alex /* -eof- */