Blame


1 0c471b84 2002-11-30 alex /*
2 0c471b84 2002-11-30 alex * ngIRCd -- The Next Generation IRC Daemon
3 0c471b84 2002-11-30 alex * Copyright (c)2001,2002 by Alexander Barton (alex@barton.de)
4 0c471b84 2002-11-30 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 0c471b84 2002-11-30 alex *
11 c7f07523 2002-12-12 alex * $Id: irc-info.h,v 1.2 2002/12/12 12:23:43 alex Exp $
12 0c471b84 2002-11-30 alex *
13 c7f07523 2002-12-12 alex * IRC info commands (header)
14 0c471b84 2002-11-30 alex */
15 0c471b84 2002-11-30 alex
16 0c471b84 2002-11-30 alex
17 0c471b84 2002-11-30 alex #ifndef __irc_info_h__
18 0c471b84 2002-11-30 alex #define __irc_info_h__
19 0c471b84 2002-11-30 alex
20 0c471b84 2002-11-30 alex
21 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_ADMIN PARAMS(( CLIENT *Client, REQUEST *Req ));
22 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_ISON PARAMS(( CLIENT *Client, REQUEST *Req ));
23 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_LINKS PARAMS(( CLIENT *Client, REQUEST *Req ));
24 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_LUSERS PARAMS(( CLIENT *Client, REQUEST *Req ));
25 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_MOTD PARAMS(( CLIENT *Client, REQUEST *Req ));
26 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_NAMES PARAMS(( CLIENT *Client, REQUEST *Req ));
27 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_STATS PARAMS(( CLIENT *Client, REQUEST *Req ));
28 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_TIME PARAMS(( CLIENT *Client, REQUEST *Req ));
29 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_USERHOST PARAMS(( CLIENT *Client, REQUEST *Req ));
30 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_VERSION PARAMS(( CLIENT *Client, REQUEST *Req ));
31 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_WHO PARAMS(( CLIENT *Client, REQUEST *Req ));
32 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_WHOIS PARAMS(( CLIENT *Client, REQUEST *Req ));
33 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_WHOWAS PARAMS(( CLIENT *Client, REQUEST *Req ));
34 0c471b84 2002-11-30 alex
35 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_Send_LUSERS PARAMS(( CLIENT *Client ));
36 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_Send_NAMES PARAMS(( CLIENT *Client, CHANNEL *Chan ));
37 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_Show_MOTD PARAMS(( CLIENT *Client ));
38 0c471b84 2002-11-30 alex GLOBAL BOOLEAN IRC_Send_WHO PARAMS(( CLIENT *Client, CHANNEL *Chan, BOOLEAN OnlyOps ));
39 0c471b84 2002-11-30 alex
40 0c471b84 2002-11-30 alex
41 0c471b84 2002-11-30 alex #endif
42 0c471b84 2002-11-30 alex
43 0c471b84 2002-11-30 alex
44 0c471b84 2002-11-30 alex /* -eof- */