Blame


1 ea9b72ef 2002-05-27 alex /*
2 ea9b72ef 2002-05-27 alex * ngIRCd -- The Next Generation IRC Daemon
3 ea9b72ef 2002-05-27 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 ea9b72ef 2002-05-27 alex *
5 ea9b72ef 2002-05-27 alex * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 ea9b72ef 2002-05-27 alex * der GNU General Public License (GPL), wie von der Free Software Foundation
7 ea9b72ef 2002-05-27 alex * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 ea9b72ef 2002-05-27 alex * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 ea9b72ef 2002-05-27 alex * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 ea9b72ef 2002-05-27 alex * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 ea9b72ef 2002-05-27 alex *
12 53f76a1d 2002-09-08 alex * $Id: irc-op.h,v 1.2 2002/09/08 00:52:55 alex Exp $
13 ea9b72ef 2002-05-27 alex *
14 ea9b72ef 2002-05-27 alex * irc-op.h: Befehle zur Channel-Verwaltung (Header)
15 ea9b72ef 2002-05-27 alex */
16 ea9b72ef 2002-05-27 alex
17 ea9b72ef 2002-05-27 alex
18 ea9b72ef 2002-05-27 alex #ifndef __irc_op_h__
19 ea9b72ef 2002-05-27 alex #define __irc_op_h__
20 ea9b72ef 2002-05-27 alex
21 ea9b72ef 2002-05-27 alex
22 ea9b72ef 2002-05-27 alex GLOBAL BOOLEAN IRC_KICK PARAMS(( CLIENT *Client, REQUEST *Req ));
23 ea9b72ef 2002-05-27 alex GLOBAL BOOLEAN IRC_INVITE PARAMS(( CLIENT *Client, REQUEST *Req ));
24 ea9b72ef 2002-05-27 alex
25 ea9b72ef 2002-05-27 alex
26 ea9b72ef 2002-05-27 alex #endif
27 ea9b72ef 2002-05-27 alex
28 ea9b72ef 2002-05-27 alex
29 ea9b72ef 2002-05-27 alex /* -eof- */