/* Do not remove the headers from this file! see /USAGE for more info. */ /* ** channel.h -- defines for the channel system ** ** 960115, Deathblade: created */ #ifndef __CHANNEL_H__ #define __CHANNEL_H__ #define CHANNEL_TYPE_NORMAL 0 #define CHANNEL_TYPE_IMUD 1 #define CHANNEL_WIZ_ONLY 0x0001 #define CHANNEL_ADMIN_ONLY 0x0002 #define CHANNEL_PERMANENT 0x1000 #endif /* __CHANNEL_H__ */