added .gitignore
[NeonServV5.git] / IRCEvents.h
index 424f3c39b5149d217e4fbefbe6d16b121dbce19b..b92669f1f7d4fde8813c17e0030e05f63a9866fa 100644 (file)
@@ -9,6 +9,7 @@ struct ChanUser;
 struct ClientSocket;
 
 void init_bind();
+void free_bind();
 
 typedef void join_func_t(struct ChanUser *chanuser);
 int bind_join(join_func_t *func);
@@ -85,6 +86,11 @@ int bind_raw(raw_func_t *func);
 void unbind_raw(raw_func_t *func);
 int event_raw(struct ClientSocket *client, char *from, char *cmd, char **argv, int argc);
 
+typedef void bot_ready_func_t(struct ClientSocket *client);
+int bind_bot_ready(bot_ready_func_t *func);
+void unbind_bot_ready(bot_ready_func_t *func);
+int event_bot_ready(struct ClientSocket *client);
+
 
 
 #endif
\ No newline at end of file