]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/message.h
More cleanup
[user/henk/code/inspircd.git] / include / message.h
index cc9076bce1df408ee302168b7b0c5398ab6bccc1..af904df92a480fc995b9cf7eab80812cd2ce1313 100644 (file)
@@ -1,3 +1,19 @@
+/*       +------------------------------------+
+ *       | Inspire Internet Relay Chat Daemon |
+ *       +------------------------------------+
+ *
+ *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
+ *                       E-mail:
+ *                <brain@chatspike.net>
+ *               <Craig@chatspike.net>
+ *     
+ * Written by Craig Edwards, Craig McLure, and others.
+ * This program is free but copyrighted software; see
+ *            the file COPYING for details.
+ *
+ * ---------------------------------------------------
+ */
+
 #ifndef __MESSAGE_H
 #define __MESSAGE_H
 
@@ -15,8 +31,6 @@
 int common_channels(userrec *u, userrec *u2);
 void chop(char* str);
 void tidystring(char* str);
-void safedelete(chanrec *p);
-void safedelete(userrec *p);
 void Blocking(int s);
 void NonBlocking(int s);
 int CleanAndResolve (char *resolvedHost, const char *unresolvedHost);
@@ -26,11 +40,11 @@ void ChangeName(userrec* user, const char* gecos);
 void ChangeDisplayedHost(userrec* user, const char* host);
 int isident(const char* n);
 int isnick(const char* n);
-char* cmode(userrec *user, chanrec *chan);
+const char* cmode(userrec *user, chanrec *chan);
 int cstatus(userrec *user, chanrec *chan);
-int has_channel(userrec *u, chanrec *c);
 void TidyBan(char *ban);
-char* chlist(userrec *user);
+std::string chlist(userrec *user, userrec* source);
 void send_network_quit(const char* nick, const char* reason);
+int cflags(userrec *user, chanrec *chan);
 
 #endif