diff options
Diffstat (limited to 'src/snomasks.cpp')
-rw-r--r-- | src/snomasks.cpp | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/snomasks.cpp b/src/snomasks.cpp index e69de29bb..fdedc7d64 100644 --- a/src/snomasks.cpp +++ b/src/snomasks.cpp @@ -0,0 +1,31 @@ +/* +------------------------------------+ + * | 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. + * + * --------------------------------------------------- + */ + +#include <string> +#include <vector> +#include "configreader.h" +#include "users.h" +#include "modules.h" +#include "commands.h" +#include "xline.h" +#include "helperfuncs.h" +#include "snomasks.h" + +extern ServerConfig* Config; +extern int MODCOUNT; +extern std::vector<Module*> modules; +extern std::vector<ircd_module*> factory; + |