X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Firc-channel.h;h=77f00f86e66c0f90255c0c1f543e84e64946f188;hp=b67b3bc68fc3e134405fcab9889e6f55cc85c29a;hb=HEAD;hpb=1f9ba7b326d05a681129f67f3f65853bb4969e76 diff --git a/src/ngircd/irc-channel.h b/src/ngircd/irc-channel.h index b67b3bc6..77f00f86 100644 --- a/src/ngircd/irc-channel.h +++ b/src/ngircd/irc-channel.h @@ -1,34 +1,32 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de) + * Copyright (c)2001-2022 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-channel.h,v 1.5 2002/09/03 23:56:55 alex Exp $ - * - * irc-channel.h: IRC-Channel-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_channel_h__ #define __irc_channel_h__ +/** + * @file + * IRC channel commands (header) + */ -GLOBAL BOOLEAN IRC_JOIN PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_PART PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_TOPIC PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_JOIN PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_PART PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_TOPIC PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_LIST PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_LIST PARAMS((CLIENT *Client, REQUEST *Req )); -GLOBAL BOOLEAN IRC_CHANINFO PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_CHANINFO PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_Send_Channel_Info PARAMS((CLIENT *Client, CHANNEL *Chan)); #endif - /* -eof- */