]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Fixing move of *_channel functions to here
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 14 Dec 2005 17:10:40 +0000 (17:10 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Wed, 14 Dec 2005 17:10:40 +0000 (17:10 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2423 e03df62e-2008-0410-955e-edbf42e46eb7

include/channels.h
src/channels.cpp

index 7962bc34ba552b5172ec5ea97fcfd2bafa473fec..dac6713762082f1c04ec9e8db3eda0b9653bbbea 100644 (file)
@@ -30,6 +30,8 @@
 #define CM_SECRET 16
 #define CM_PRIVATE 32
 
+class userrec;
+
 /** Holds an entry for a ban list, exemption list, or invite list.
  * This class contains a single element in a channel list, such as a banlist.
  */
index 38e90f28684acd4ab40a3ea31eb9e2274d0d2d6f..59cfb18bd87c10341d7098e38ccc51692062e470 100644 (file)
@@ -2,7 +2,7 @@
  *       | Inspire Internet Relay Chat Daemon |
  *       +------------------------------------+
  *
- *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
+ *  Inspire is copyright (C) 2002-2005 ChatSpike-Dev.
  *                       E-mail:
  *                <brain@chatspike.net>
  *               <Craig@chatspike.net>
@@ -40,12 +40,14 @@ using namespace std;
 #include "globals.h"
 #include "modules.h"
 #include "dynamic.h"
+#include "commands.h"
 #include "wildcard.h"
 #include "message.h"
 #include "mode.h"
 #include "xline.h"
 #include "inspstring.h"
 #include "helperfuncs.h"
+#include "typedefs.h"
 
 #ifdef GCC3
 #define nspace __gnu_cxx
@@ -65,6 +67,7 @@ extern std::vector<std::string> module_names;
 extern int boundPortCount;
 extern std::stringstream config_f;
 extern time_t TIME;
+extern chan_hash chanlist;
 
 using namespace std;