1 /* 2 * Copyright (C) 2005 William Pitcock, et al. 3 * Rights to this code are as documented in doc/LICENSE. 4 * 5 * This code contains the channel mode definitions for ircnet ircd. 6 * 7 */ 8 9 #ifndef RATBOX_H 10 #define RATBOX_H 11 12 13 /* Extended channel modes will eventually go here. */ 14 #define CMODE_NOCOLOR 0x00001000 15 #define CMODE_NOCTCP 0x00002000 16 #define CMODE_DELAYED 0x00004000 17 #define CMODE_AUDITORIUM 0x00008000 18 #define CMODE_NOQUIT 0x00010000 19 #define CMODE_NONOTICE 0x00020000 20 21 #endif 22