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/channels.h | |
parent | e3d5140dcc936ff411c438b7e3997104cb5f085a (diff) |
Fix Windows
Diffstat (limited to 'include/channels.h')
-rw-r--r-- | include/channels.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/include/channels.h b/include/channels.h index bcde363fc..dbc71129d 100644 --- a/include/channels.h +++ b/include/channels.h @@ -246,15 +246,15 @@ class CoreExport Channel : public virtual Base, public Extensible, public Flags< void Hold(); }; -extern Channel *findchan(const Anope::string &chan); +extern CoreExport Channel *findchan(const Anope::string &chan); -extern User *nc_on_chan(Channel *c, const NickCore *nc); +extern CoreExport User *nc_on_chan(Channel *c, const NickCore *nc); -extern void do_cmode(const Anope::string &source, const Anope::string &channel, const Anope::string &modes, const Anope::string &ts); -extern void do_join(const Anope::string &source, const Anope::string &channels, const Anope::string &ts); -extern void do_kick(const Anope::string &source, const Anope::string &channel, const Anope::string &users, const Anope::string &reason); -extern void do_part(const Anope::string &source, const Anope::string &channels, const Anope::string &reason); +extern CoreExport void do_cmode(const Anope::string &source, const Anope::string &channel, const Anope::string &modes, const Anope::string &ts); +extern CoreExport void do_join(const Anope::string &source, const Anope::string &channels, const Anope::string &ts); +extern CoreExport void do_kick(const Anope::string &source, const Anope::string &channel, const Anope::string &users, const Anope::string &reason); +extern CoreExport void do_part(const Anope::string &source, const Anope::string &channels, const Anope::string &reason); -extern void chan_set_correct_modes(const User *user, Channel *c, int give_modes); +extern CoreExport void chan_set_correct_modes(const User *user, Channel *c, int give_modes); #endif // CHANNELS_H |