changed Makefile; build all commands as an own file
[NeonServV5.git] / HandleInfoHandler.h
1 #ifndef _HandleInfoHandler_h
2 #define _HandleInfoHandler_h
3
4 #include "main.h"
5
6 struct ClientSocket;
7 struct UserNode;
8
9 #define AUTHLOOKUP_CALLBACK(NAME) void NAME(UNUSED_ARG(char *auth), UNUSED_ARG(int exists), UNUSED_ARG(void *data))
10 typedef AUTHLOOKUP_CALLBACK(authlookup_callback_t);
11
12 void lookup_authname(char *auth, authlookup_callback_t callback, void *data);
13 void init_handleinfohandler();
14 void free_handleinfohandler();
15
16 #endif