added raw_topic, raw_privmsg and wrote the small "dead channel garbage collector"
[NeonServV5.git] / IRCEvents.c
index 6d863f84059628f8b96598966f64f2eb23589ced..acf4ff5cb163c66d7cbec54f3df034c16fc81faa 100644 (file)
@@ -17,6 +17,10 @@ int event_kick(struct UserNode *user, struct ChanUser *target, char *reason) {
     return 1;
 }
 
+int event_topic(struct UserNode *user, struct ChanNode *chan, const char *new_topic) {
+    return 1;
+}
+
 int event_chanmsg(struct UserNode *user, struct ChanNode *chan, char *message) {
     return 1;
 }