Blame


1 c23199d9 2002-02-27 alex /*
2 c23199d9 2002-02-27 alex * ngIRCd -- The Next Generation IRC Daemon
3 c23199d9 2002-02-27 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 c23199d9 2002-02-27 alex *
5 c23199d9 2002-02-27 alex * Dieses Programm ist freie Software. Sie koennen es unter den Bedingungen
6 c23199d9 2002-02-27 alex * der GNU General Public License (GPL), wie von der Free Software Foundation
7 c23199d9 2002-02-27 alex * herausgegeben, weitergeben und/oder modifizieren, entweder unter Version 2
8 c23199d9 2002-02-27 alex * der Lizenz oder (wenn Sie es wuenschen) jeder spaeteren Version.
9 c23199d9 2002-02-27 alex * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
10 c23199d9 2002-02-27 alex * der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
11 c23199d9 2002-02-27 alex *
12 3010f034 2002-09-03 alex * $Id: irc-write.h,v 1.4 2002/09/03 23:56:06 alex Exp $
13 c23199d9 2002-02-27 alex *
14 c23199d9 2002-02-27 alex * irc-write.h: IRC-Texte und Befehle ueber Netzwerk versenden (Header)
15 c23199d9 2002-02-27 alex */
16 c23199d9 2002-02-27 alex
17 c23199d9 2002-02-27 alex
18 c23199d9 2002-02-27 alex #ifndef __irc_write_h__
19 c23199d9 2002-02-27 alex #define __irc_write_h__
20 c23199d9 2002-02-27 alex
21 c23199d9 2002-02-27 alex
22 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrClient PARAMS((CLIENT *Client, CHAR *Format, ... ));
23 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrClientPrefix PARAMS((CLIENT *Client, CLIENT *Prefix, CHAR *Format, ... ));
24 c23199d9 2002-02-27 alex
25 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan, BOOLEAN Remote, CHAR *Format, ... ));
26 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan, CLIENT *Prefix, BOOLEAN Remote, CHAR *Format, ... ));
27 c23199d9 2002-02-27 alex
28 c2f60abe 2002-05-27 alex GLOBAL VOID IRC_WriteStrServers PARAMS((CLIENT *ExceptOf, CHAR *Format, ... ));
29 c2f60abe 2002-05-27 alex GLOBAL VOID IRC_WriteStrServersPrefix PARAMS((CLIENT *ExceptOf, CLIENT *Prefix, CHAR *Format, ... ));
30 3010f034 2002-09-03 alex GLOBAL VOID IRC_WriteStrServersPrefixFlag PARAMS((CLIENT *ExceptOf, CLIENT *Prefix, CHAR Flag, CHAR *Format, ... ));
31 c23199d9 2002-02-27 alex
32 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix, BOOLEAN Remote, CHAR *Format, ... ));
33 c23199d9 2002-02-27 alex
34 c23199d9 2002-02-27 alex
35 c23199d9 2002-02-27 alex #endif
36 c23199d9 2002-02-27 alex
37 c23199d9 2002-02-27 alex
38 c23199d9 2002-02-27 alex /* -eof- */