(thanks to the people reading git and excessively exploiting this bug... It was undet...
[NeonServV5.git] / src / HandleInfoHandler.h
index 9071ea2fff5040eb5d814e8c2686fdfa7f82fc30..a796a6d93d874f00ca530f680775d231dd0c8576 100644 (file)
@@ -1,5 +1,5 @@
-/* HandleInfoHandler.h - NeonServ v5.0
- * Copyright (C) 2011  Philipp Kreil (pk910)
+/* HandleInfoHandler.h - NeonServ v5.6
+ * 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;
 
-#define AUTHLOOKUP_CALLBACK(NAME) void NAME(UNUSED_ARG(char *auth), UNUSED_ARG(int exists), UNUSED_ARG(void *data))
+#define AUTHLOOKUP_CALLBACK(NAME) void NAME(UNUSED_ARG(char *auth), UNUSED_ARG(int exists), UNUSED_ARG(time_t registered), UNUSED_ARG(void *data))
 typedef AUTHLOOKUP_CALLBACK(authlookup_callback_t);
 
-void lookup_authname(char *auth, authlookup_callback_t callback, void *data);
+#ifndef DND_FUNCTIONS
+void clear_handleinfoqueue(struct ClientSocket *client);
+/* MODULAR ACCESSIBLE */ void lookup_authname(char *auth, int module_id, authlookup_callback_t callback, void *data);
 void init_handleinfohandler();
 void free_handleinfohandler();
-
-#endif
\ No newline at end of file
+#endif
+#endif