/* * ---------------------------------------------------------------- * Night Light Internet Relay Chat Events (irc_events.h) * ---------------------------------------------------------------- * Copyright (C) 1997-2003 Jonas Kvinge * All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. * * Last modified by: * Jonas Kvinge (18.07.2001) * * */ #ifdef IRC_EVENTS_H #warning "irc_events.h already included." #else #define IRC_EVENTS_H #define IRC_EVENT_NONE 0 #define IRC_EVENT_PRIVMSG 'b' #define IRC_EVENT_ACTION 'a' #define IRC_EVENT_CTCP 'c' #define IRC_EVENT_NOTICE 'd' #define IRC_EVENT_NICK 'n' #define IRC_EVENT_QUIT 'q' #define IRC_EVENT_MODE 'm' #define IRC_EVENT_INVITE 'i' #define IRC_EVENT_JOIN 'j' #define IRC_EVENT_PART 'p' #define IRC_EVENT_KICK 'k' #define IRC_EVENT_TOPIC 't' #define IRC_EVENT_KILL 'e' #define IRC_EVENT_WALLOPS 'w' #define IRC_EVENT_VOICE 'v' #define IRC_EVENT_OP 'o' #define IRC_EVENT_NICKFROM 'n' #define IRC_EVENT_NICKTO 'y' #define IRC_EVENT_KICKED 'x' #endif