X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Firc-info.h;h=6b6124b9ee9910faa6b9b3003d04926022d11f81;hp=b087cd08cc6443ea46f9dbcb430e6fb127cfe945;hb=0fc822d8c44be42a62d3c26bbab99d5d0bc88346;hpb=0c471b84f7985a1f882be9ed2a1af700390f8c9c diff --git a/src/ngircd/irc-info.h b/src/ngircd/irc-info.h index b087cd08..6b6124b9 100644 --- a/src/ngircd/irc-info.h +++ b/src/ngircd/irc-info.h @@ -2,44 +2,44 @@ * ngIRCd -- The Next Generation IRC Daemon * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) * - * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen - * der GNU General Public License (GPL), wie von der Free Software Foundation - * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2 - * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version. - * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste - * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS. - * - * $Id: irc-info.h,v 1.1 2002/11/30 17:39:56 alex Exp $ - * - * irc-info.h: IRC-Info-Befehle (Header) + * 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. */ - #ifndef __irc_info_h__ #define __irc_info_h__ +/** + * @file + * IRC info commands (header) + */ -GLOBAL BOOLEAN IRC_ADMIN PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_ISON PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_LINKS PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_LUSERS PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_MOTD PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_NAMES PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_STATS PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_TIME PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_USERHOST PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_VERSION PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_WHO PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_WHOIS PARAMS(( CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_WHOWAS PARAMS(( CLIENT *Client, REQUEST *Req )); - -GLOBAL BOOLEAN IRC_Send_LUSERS PARAMS(( CLIENT *Client )); -GLOBAL BOOLEAN IRC_Send_NAMES PARAMS(( CLIENT *Client, CHANNEL *Chan )); -GLOBAL BOOLEAN IRC_Show_MOTD PARAMS(( CLIENT *Client )); -GLOBAL BOOLEAN IRC_Send_WHO PARAMS(( CLIENT *Client, CHANNEL *Chan, BOOLEAN OnlyOps )); - +GLOBAL bool IRC_ADMIN PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_INFO PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_ISON PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_LINKS PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_LUSERS PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_MOTD PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_NAMES PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_STATS PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_SUMMON PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_TIME PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_USERHOST PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_USERS PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_SERVLIST PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_VERSION PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_WHO PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_WHOIS PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_WHOWAS PARAMS(( CLIENT *Client, REQUEST *Req )); + +GLOBAL bool IRC_Send_LUSERS PARAMS(( CLIENT *Client )); +GLOBAL bool IRC_Send_NAMES PARAMS(( CLIENT *Client, CHANNEL *Chan )); +GLOBAL bool IRC_Show_MOTD PARAMS(( CLIENT *Client )); +GLOBAL bool IRC_Send_ISUPPORT PARAMS(( CLIENT *Client )); #endif - /* -eof- */