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=685ec0c3044eccd711ea0c9e085fca5acbd5bdfb;hp=3796d560a3522dd96bc7c85ebe1c3613972e9e5a;hb=798de94d6556bdf2c6019f368ad7441fe6e2d1be;hpb=2ee05c9a6856d78f996dfbc991452e4cc1c58c37 diff --git a/src/ngircd/irc-channel.h b/src/ngircd/irc-channel.h index 3796d560..685ec0c3 100644 --- a/src/ngircd/irc-channel.h +++ b/src/ngircd/irc-channel.h @@ -2,37 +2,29 @@ * 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-channel.h,v 1.1 2002/03/03 17:15:11 alex Exp $ - * - * irc-channel.h: IRC-Channel-Befehle (Header) - * - * $Log: irc-channel.h,v $ - * Revision 1.1 2002/03/03 17:15:11 alex - * - Source in weitere Module fuer IRC-Befehle aufgesplitted. - * + * 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__ -#include "parse.h" -#include "client.h" +/** + * @file + * IRC channel commands (header) + */ +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_JOIN( CLIENT *Client, REQUEST *Req ); -GLOBAL BOOLEAN IRC_PART( CLIENT *Client, REQUEST *Req ); -GLOBAL BOOLEAN IRC_TOPIC( CLIENT *Client, REQUEST *Req ); +GLOBAL bool IRC_LIST PARAMS((CLIENT *Client, REQUEST *Req )); +GLOBAL bool IRC_CHANINFO PARAMS((CLIENT *Client, REQUEST *Req )); #endif - /* -eof- */