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 c7f07523 2002-12-12 alex * This program is free software; you can redistribute it and/or modify
6 c7f07523 2002-12-12 alex * it under the terms of the GNU General Public License as published by
7 c7f07523 2002-12-12 alex * the Free Software Foundation; either version 2 of the License, or
8 c7f07523 2002-12-12 alex * (at your option) any later version.
9 c7f07523 2002-12-12 alex * Please read the file COPYING, README and AUTHORS for more information.
10 c23199d9 2002-02-27 alex *
11 c7f07523 2002-12-12 alex * $Id: irc-write.h,v 1.5 2002/12/12 12:23:43 alex Exp $
12 c23199d9 2002-02-27 alex *
13 c7f07523 2002-12-12 alex * Sending IRC commands over the network (header)
14 c23199d9 2002-02-27 alex */
15 c23199d9 2002-02-27 alex
16 c23199d9 2002-02-27 alex
17 c23199d9 2002-02-27 alex #ifndef __irc_write_h__
18 c23199d9 2002-02-27 alex #define __irc_write_h__
19 c23199d9 2002-02-27 alex
20 c23199d9 2002-02-27 alex
21 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrClient PARAMS((CLIENT *Client, CHAR *Format, ... ));
22 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrClientPrefix PARAMS((CLIENT *Client, CLIENT *Prefix, CHAR *Format, ... ));
23 c23199d9 2002-02-27 alex
24 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrChannel PARAMS((CLIENT *Client, CHANNEL *Chan, BOOLEAN Remote, CHAR *Format, ... ));
25 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrChannelPrefix PARAMS((CLIENT *Client, CHANNEL *Chan, CLIENT *Prefix, BOOLEAN Remote, CHAR *Format, ... ));
26 c23199d9 2002-02-27 alex
27 c2f60abe 2002-05-27 alex GLOBAL VOID IRC_WriteStrServers PARAMS((CLIENT *ExceptOf, CHAR *Format, ... ));
28 c2f60abe 2002-05-27 alex GLOBAL VOID IRC_WriteStrServersPrefix PARAMS((CLIENT *ExceptOf, CLIENT *Prefix, CHAR *Format, ... ));
29 3010f034 2002-09-03 alex GLOBAL VOID IRC_WriteStrServersPrefixFlag PARAMS((CLIENT *ExceptOf, CLIENT *Prefix, CHAR Flag, CHAR *Format, ... ));
30 c23199d9 2002-02-27 alex
31 c2f60abe 2002-05-27 alex GLOBAL BOOLEAN IRC_WriteStrRelatedPrefix PARAMS((CLIENT *Client, CLIENT *Prefix, BOOLEAN Remote, CHAR *Format, ... ));
32 c23199d9 2002-02-27 alex
33 c23199d9 2002-02-27 alex
34 c23199d9 2002-02-27 alex #endif
35 c23199d9 2002-02-27 alex
36 c23199d9 2002-02-27 alex
37 c23199d9 2002-02-27 alex /* -eof- */