*** VERSION 5.4.0 ***
[NeonServV5.git] / src / IRCParser.h
index e4f1ec14d85d583b4cdc00cef2468521e65beac2..07d904fc6117b55104013e034da320e8d8ad0adb 100644 (file)
@@ -1,5 +1,5 @@
-/* IRCParser.h - NeonServ v5.2
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* IRCParser.h - NeonServ v5.4
+ * 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
@@ -31,6 +31,7 @@ struct irc_cmd {
     struct irc_cmd *next;
 };
 
+#ifndef DND_FUNCTIONS
 extern int statistics_privmsg;
 extern int statistics_network_users;
 extern int statistics_network_channels;
@@ -39,8 +40,8 @@ int parse_lines(struct ClientSocket *client, char *lines, int len);
 void bot_disconnect(struct ClientSocket *client);
 void init_parser();
 void free_parser();
-void reply(struct ClientSocket *client, struct UserNode *user, const char *text, ...);
-char* merge_argv(char **argv, int start, int end);
-char* merge_argv_char(char **argv, int start, int end, char seperator);
-
-#endif
\ No newline at end of file
+/* MODULAR ACCESSIBLE */ void reply(struct ClientSocket *client, struct UserNode *user, const char *text, ...);
+/* MODULAR ACCESSIBLE */ char* merge_argv(char **argv, int start, int end);
+/* MODULAR ACCESSIBLE */ char* merge_argv_char(char **argv, int start, int end, char seperator);
+#endif
+#endif