X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Firc.h;h=bca9d029b7fd10acad33d610635de365b770256c;hp=14f1b04a5222d8570bf9a8a414e56c13215dfdf6;hb=0b91df05e0b85980292956973b339ecce31e28ed;hpb=2a13cd224fd6f2cbc9a478c94b4bd4d47fbdd0ad diff --git a/src/ngircd/irc.h b/src/ngircd/irc.h index 14f1b04a..bca9d029 100644 --- a/src/ngircd/irc.h +++ b/src/ngircd/irc.h @@ -1,41 +1,29 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001 by Alexander Barton (alex@barton.de) + * 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 comBase beteiligten Autoren finden Sie in der Datei AUTHORS. + * 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.h,v 1.2 2001/12/23 21:57:16 alex Exp $ + * $Id: irc.h,v 1.38 2003/01/15 13:49:20 alex Exp $ * - * irc.h: IRC-Befehle (Header) - * - * $Log: irc.h,v $ - * Revision 1.2 2001/12/23 21:57:16 alex - * - erste IRC-Befehle zu implementieren begonnen. - * - * Revision 1.1 2001/12/14 08:13:43 alex - * - neues Modul begonnen :-) + * IRC commands (header) */ #ifndef __irc_h__ #define __irc_h__ -#include "parse.h" - - -GLOBAL VOID IRC_Init( VOID ); -GLOBAL VOID IRC_Exit( VOID ); - -GLOBAL VOID IRC_WriteStr_Client( CLIENT *Client, CLIENT *Prefix, CHAR *Format, ... ); -GLOBAL BOOLEAN IRC_PASS( CLIENT *Client, REQUEST *Req ); -GLOBAL BOOLEAN IRC_NICK( CLIENT *Client, REQUEST *Req ); -GLOBAL BOOLEAN IRC_USER( CLIENT *Client, REQUEST *Req ); +GLOBAL BOOLEAN IRC_ERROR PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL BOOLEAN IRC_KILL PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL BOOLEAN IRC_NOTICE PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL BOOLEAN IRC_PRIVMSG PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL BOOLEAN IRC_TRACE PARAMS(( CLIENT *Client, REQUEST *Req )); +GLOBAL BOOLEAN IRC_HELP PARAMS(( CLIENT *Client, REQUEST *Req )); #endif