X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Firc-oper.h;h=bd68d4fb3931b58c45d96157ac3054ef337b538d;hp=acff64e98f9198e0d498135ede84fa9a188f022b;hb=3de972e0bdbb5da7b13db5628e5373e3ec57cf51;hpb=c7f075236b5930f191e784a69c782e7a9d24bc58 diff --git a/src/ngircd/irc-oper.h b/src/ngircd/irc-oper.h index acff64e9..bd68d4fb 100644 --- a/src/ngircd/irc-oper.h +++ b/src/ngircd/irc-oper.h @@ -1,31 +1,32 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) + * Copyright (c)2001-2011 Alexander Barton (alex@barton.de) and Contributors. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * Please read the file COPYING, README and AUTHORS for more information. - * - * $Id: irc-oper.h,v 1.9 2002/12/12 12:23:43 alex Exp $ - * - * IRC operator commands (header) */ - #ifndef __irc_oper_h__ #define __irc_oper_h__ +/** + * @file + * IRC operator commands (header) + */ -GLOBAL BOOLEAN IRC_OPER PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_DIE PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_REHASH PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_RESTART PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_CONNECT PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_OPER PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_DIE PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_REHASH PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_RESTART PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_CONNECT PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_DISCONNECT PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_WALLOPS PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_xLINE PARAMS((CLIENT *Client, REQUEST *Req)); #endif - /* -eof- */