ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/protocol/hyperion.h
Revision: 1.4
Committed: Sun Sep 16 18:54:42 2007 UTC (19 years ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +21 -15 lines
Log Message:
#defines to enum

File Contents

# User Rev Content
1 pippijn 1.4 /**
2     * hyperion.h: This code contains the channel mode definitions for ratbox ircd.
3     *
4     * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
5     * Rights to this code are as documented in COPYING.
6     *
7     *
8     * Portions of this file were derived from sources bearing the following license:
9 pippijn 1.3 * Copyright © 2005 William Pitcock, et al.
10 pippijn 1.2 * Rights to this code are as documented in doc/pod/license.pod.
11 pippijn 1.1 *
12 pippijn 1.4 * $Id: hyperion.h,v 1.3 2007-08-28 17:08:07 pippijn Exp $
13 pippijn 1.1 */
14    
15     #ifndef RATBOX_H
16     #define RATBOX_H
17    
18 pippijn 1.4 enum
19     {
20     CMODE_NOCOLOR = 1 << 12, /* hyperion +c */
21     CMODE_REGONLY = 1 << 13, /* hyperion +r */
22     CMODE_OPMOD = 1 << 14, /* hyperion +z */
23     CMODE_FINVITE = 1 << 15, /* hyperion +g */
24     CMODE_EXLIMIT = 1 << 16, /* hyperion +L */
25     CMODE_PERM = 1 << 17, /* hyperion +P */
26     CMODE_DISFWD = 1 << 18, /* hyperion +Q */
27     CMODE_JUPED = 1 << 19, /* hyperion +j */
28     CMODE_MODREG = 1 << 20 /* hyperion +R */
29     };
30 pippijn 1.1
31     #endif