Another year is about to end... So we have to update these damn copyright information :P
[NeonServV5.git] / src / EventLogger.h
index 514c4656c63f9799a5076da14198e9f7b069ab40..4b8927cd04449fa0ec2fb4653b0c5ef9acc98860 100644 (file)
@@ -1,5 +1,5 @@
-/* EventLogger.h - NeonServ v5.1
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* EventLogger.h - NeonServ v5.3
+ * Copyright (C) 2011-2012  Philipp Kreil (pk910)
  * 
  * 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
 struct ClientSocket;
 struct UserNode;
 struct ChanNode;
+struct cmd_binding;
 
 struct Event {
     struct ClientSocket *client;
     struct UserNode *user;
     struct ChanNode *chan;
     time_t event_time;
-    char *command;
+    struct cmd_binding *command;
     char *arguments;
     unsigned int flags; /* defined in modcmd.h */
     
     struct Event *next;
 };
 
-struct Event *createEvent(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, char *command, char **args, int argc, int flags);
+struct Event *createEvent(struct ClientSocket *client, struct UserNode *user, struct ChanNode *chan, struct cmd_binding *command, char **args, int argc, int flags);
 void logEvent(struct Event *event);
 void destroyEvents();