multiple fixes
[NeonServV5.git] / src / HandleInfoHandler.h
index c49cfacaa6083b21d718f595678558e270c890d3..e77c4940ec2e263c5774f28292dc04e5f8f0ac2c 100644 (file)
 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);
 
+#ifndef DND_FUNCTIONS
 void clear_handleinfoqueue(struct ClientSocket *client);
-void lookup_authname(char *auth, authlookup_callback_t callback, void *data);
+/* 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