tried to reorder the program structure and build process
[NeonServV5.git] / src / bot_NeonServ.h
1 #ifndef _bot_NeonServ_h
2 #define _bot_NeonServ_h
3
4 #include "main.h"
5 #include "timeq.h"
6
7 struct ChanNode;
8
9 void init_NeonServ();
10 void loop_NeonServ();
11 void free_NeonServ();
12
13 TIMEQ_CALLBACK(channel_ban_timeout);
14 struct ClientSocket *getBotForChannel(struct ChanNode *chan);
15
16 #endif