X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Fngircd%2Firc.h;h=03fb0dc45bbe1e02893a8ab4d0ccf1950003b54d;hb=e73d70ce6fab3acdefe914520a4296acb6d50eac;hp=b271248574b141253af76b19ac6940b52ddbcee5;hpb=38b9cb88c167002576c3aa433994ec8a2f41ec8b;p=ngircd-alex.git diff --git a/src/ngircd/irc.h b/src/ngircd/irc.h index b2712485..03fb0dc4 100644 --- a/src/ngircd/irc.h +++ b/src/ngircd/irc.h @@ -1,34 +1,36 @@ /* * ngIRCd -- The Next Generation IRC Daemon - * Copyright (c)2001 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. - * - * $Id: irc.h,v 1.1 2001/12/14 08:13:43 alex Exp $ - * - * irc.h: IRC-Befehle (Header) - * - * $Log: irc.h,v $ - * Revision 1.1 2001/12/14 08:13:43 alex - * - neues Modul begonnen :-) + * Copyright (c)2001-2013 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. */ - #ifndef __irc_h__ #define __irc_h__ +/** + * @file + * IRC commands (header) + */ + +GLOBAL bool IRC_CheckListTooBig PARAMS((CLIENT *From, const int Count, + const int Limit, const char *Name)); -GLOBAL VOID IRC_Init( VOID ); -GLOBAL VOID IRC_Exit( VOID ); +GLOBAL bool IRC_ERROR PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_KILL PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_NOTICE PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_PRIVMSG PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_SQUERY PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_TRACE PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_HELP PARAMS((CLIENT *Client, REQUEST *Req)); +GLOBAL bool IRC_KillClient PARAMS((CLIENT *Client, CLIENT *From, + const char *Nick, const char *Reason)); #endif - /* -eof- */