Makefile improved, added the log-save & verbose feature
[Cbot.git] / irc_cmd.h
blobef92916602f0f5282b75f780f123b3c029fa80cf
1 /* irc_cmd.h - Prototypes of the functions which allows
2 * parse and execute a set of commands into the IRC bot
3 * =====================================================
5 * Copyright (C) 2009 "Carlos RĂ­os Vera" <crosvera@gmail.com>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 **********************************************************/
23 #include "config.h"
25 #define NORMAL_MSG 0
26 #define EXIT_RESTART 1
27 #define EXIT 2
30 /* The follow structure will be filled with the `irc_parser'
31 * function, and will save some basic information about a
32 * message sent to the channel.
33 ***********************************************************/
34 struct irc_msg{
35 int type; /* Type of the message */
36 char *msg; /* The message to send*/
37 char *msg_log; /* The message to send to the log */
40 struct irc_msg *irc_parser( const char *raw_entry, struct _config *config );