Merge branch 'development'
[NeonServV5.git] / src / EventLogger.h
1 /* EventLogger.h - NeonServ v5.6
2  * Copyright (C) 2011-2012  Philipp Kreil (pk910)
3  * 
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License 
15  * along with this program. If not, see <http://www.gnu.org/licenses/>. 
16  */
17 #ifndef _EventLogger_h
18 #define _EventLogger_h
19
20 #include "main.h"
21 struct ClientSocket;
22 struct UserNode;
23 struct ChanNode;
24 struct cmd_binding;
25
26 struct Event {
27     struct ClientSocket *client;
28     struct UserNode *user;
29     struct ChanNode *chan;
30     time_t event_time;
31     struct cmd_binding *command;
32     char *arguments;
33     unsigned int flags; /* defined in modcmd.h */
34     
35     struct Event *next;
36 };
37
38 #ifndef DND_FUNCTIONS
39 struct Event *createEvent(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, struct cmd_binding *command, char **args, int argc, int flags);
40 /* MODULAR ACCESSIBLE */ void logEvent(struct Event *event);
41 void destroyEvents();
42 #endif
43 #endif