diff options
author | Adam <Adam@anope.org> | 2012-09-02 08:30:54 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-09-02 08:30:54 -0400 |
commit | 1af64a9bbb150b9daae3944d6aae86864c271103 (patch) | |
tree | c24a1ac6793e997f83ac66810b611f88855fcd90 /include/regchannel.h | |
parent | e3d5140dcc936ff411c438b7e3997104cb5f085a (diff) |
Fix Windows
Diffstat (limited to 'include/regchannel.h')
-rw-r--r-- | include/regchannel.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/include/regchannel.h b/include/regchannel.h index 255bcc200..9640a6735 100644 --- a/include/regchannel.h +++ b/include/regchannel.h @@ -16,10 +16,11 @@ #include "logger.h" #include "modules.h" #include "serialize.h" +#include "bots.h" typedef Anope::insensitive_map<ChannelInfo *> registered_channel_map; -extern serialize_checker<registered_channel_map> RegisteredChannelList; +extern CoreExport serialize_checker<registered_channel_map> RegisteredChannelList; /** Flags used for the ChannelInfo class */ @@ -441,9 +442,9 @@ class CoreExport ChannelInfo : public Extensible, public Flags<ChannelInfoFlag, void ClearLevels(); }; -extern ChannelInfo *cs_findchan(const Anope::string &chan); -extern bool IsFounder(const User *user, const ChannelInfo *ci); -extern void update_cs_lastseen(User *user, ChannelInfo *ci); -extern int get_idealban(const ChannelInfo *ci, User *u, Anope::string &ret); +extern CoreExport ChannelInfo *cs_findchan(const Anope::string &chan); +extern CoreExport bool IsFounder(const User *user, const ChannelInfo *ci); +extern CoreExport void update_cs_lastseen(User *user, ChannelInfo *ci); +extern CoreExport int get_idealban(const ChannelInfo *ci, User *u, Anope::string &ret); #endif // REGCHANNEL_H |