]> jfr.im git - solanum.git/blob - include/chmode.h
Resolve shfit/reduce conflict in timespec production (#54)
[solanum.git] / include / chmode.h
1 /*
2 * Solanum: a slightly advanced ircd
3 * chmode.h: The ircd channel header.
4 *
5 * Copyright (C) 1990 Jarkko Oikarinen and University of Oulu, Co Center
6 * Copyright (C) 1996-2002 Hybrid Development Team
7 * Copyright (C) 2002-2004 ircd-ratbox development team
8 * Copyright (C) 2008 charybdis development team
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation; either version 2 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
23 * USA
24 */
25
26 #ifndef INCLUDED_chmode_h
27 #define INCLUDED_chmode_h
28
29 /* something not included in messages.tab
30 * to change some hooks behaviour when needed
31 * -- dwr
32 */
33 #define ERR_CUSTOM 1000
34
35 extern int chmode_flags[256];
36
37 extern ChannelModeFunc chm_nosuch;
38 extern ChannelModeFunc chm_orphaned;
39 extern ChannelModeFunc chm_simple;
40 extern ChannelModeFunc chm_ban;
41 extern ChannelModeFunc chm_hidden;
42 extern ChannelModeFunc chm_staff;
43 extern ChannelModeFunc chm_forward;
44 extern ChannelModeFunc chm_throttle;
45 extern ChannelModeFunc chm_key;
46 extern ChannelModeFunc chm_limit;
47 extern ChannelModeFunc chm_op;
48 extern ChannelModeFunc chm_voice;
49
50 extern unsigned int cflag_add(char c, ChannelModeFunc function);
51 extern void cflag_orphan(char c);
52 extern void construct_cflags_strings(void);
53 extern char cflagsbuf[256];
54 extern char cflagsmyinfo[256];
55
56 #endif