diff options
Diffstat (limited to 'include/module.h')
-rw-r--r-- | include/module.h | 52 |
1 files changed, 50 insertions, 2 deletions
diff --git a/include/module.h b/include/module.h index 6435f9b7f..02f0e61c4 100644 --- a/include/module.h +++ b/include/module.h @@ -1,9 +1,57 @@ +/* + * + * (C) 2003-2012 Anope Team + * Contact us at team@anope.org + * + * Please read COPYING and README for further details. + * + * Based on the original code of Epona by Lara. + * Based on the original code of Services by Andy Church. + */ + #ifndef MODULE_H #define MODULE_H -#include "services.h" +/* Just include everything for now */ +#include "access.h" +#include "account.h" +#include "anope.h" +#include "base.h" +#include "bots.h" +#include "botserv.h" +#include "channels.h" +#include "commands.h" +#include "config.h" +#include "dns.h" +#include "extensible.h" +#include "extern.h" +#include "hashcomp.h" +#include "language.h" +#include "lists.h" +#include "logger.h" +#include "mail.h" +#include "memo.h" +#include "modes.h" #include "modules.h" #include "oper.h" -#include "commands.h" +#include "opertype.h" +#include "protocol.h" +#include "pstdint.h" +#include "regchannel.h" +#include "serialize.h" +#include "servers.h" +#include "service.h" +#include "services.h" +#include "signals.h" +#include "socketengine.h" +#include "sockets.h" +#include "threadengine.h" +#include "timers.h" +#include "uplink.h" +#include "users.h" + +#include "global.h" +#include "memoserv.h" +#include "nickserv.h" #endif // MODULE_H |