diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:29:56 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:29:56 +0000 |
commit | 5d695b7bf69eada724742fe7cbdf92b609a0858e (patch) | |
tree | c0cdb47b73c6b1176d7c3d523c60fc7675e4a3d3 /include/extern.h | |
parent | c8d4ff56a17d55ad886096c85e03f6ea12734f5d (diff) |
Guest nicks, MODE.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1301 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/extern.h')
-rw-r--r-- | include/extern.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/extern.h b/include/extern.h index eff96a80d..00bbfb23d 100644 --- a/include/extern.h +++ b/include/extern.h @@ -1127,14 +1127,14 @@ E void anope_cmd_global(const char *source, const char *fmt, ...); E void anope_cmd_invite(const char *source, const char *chan, const char *nick); /* INVITE */ E void anope_cmd_join(const char *user, const char *channel, time_t chantime); /* JOIN */ E void anope_cmd_kick(const char *source, const char *chan, const char *user, const char *fmt, ...); /* KICK */ -E void anope_cmd_mode(const char *source, const char *dest, const char *fmt, ...); /* MODE */ +E void anope_SendMode(const char *source, const char *dest, const char *fmt, ...); /* MODE */ E void anope_cmd_tmode(const char *source, const char *dest, const char *fmt, ...); /* TMODE */ E void anope_cmd_unban(const char *name, const char *nick); /* MODE -b */ E void anope_cmd_bot_chan_mode(const char *nick, const char *chan); /* MODE BotServ */ E void anope_cmd_netinfo(int ac, const char **av); /* NETINFO */ E void anope_cmd_chg_nick(const char *oldnick, const char *newnick); /* NICK */ E void anope_cmd_bot_nick(const char *nick, const char *user,const char *host,const char *real,const char *modes); /* NICK */ -E void anope_cmd_guest_nick(const char *nick, const char *user,const char *host,const char *real,const char *modes); /* NICK */ +E void anope_SendGuestNick(const char *nick, const char *user,const char *host,const char *real,const char *modes); /* NICK */ E void anope_cmd_message(const char *source, const char *dest, const char *fmt, ...); /* NOTICE */ E void anope_cmd_notice_ops(const char *source, const char *dest, const char *fmt, ...); /* NOTICE */ E void anope_cmd_notice(const char *source, const char *dest, const char *msg); /* NOTICE */ |