diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:37:14 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 08:37:14 +0000 |
commit | bd56c0fb93b06c1d5f58f83089f12eda5c9e82d9 (patch) | |
tree | a99c35c6cc7cafcad8f85a96927c80b40ebb3fb2 /include/extern.h | |
parent | dae48c47929a9a6341b90412cc551d01d89613e6 (diff) |
Global NOTICE/PRIVMSG, QUIT.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1305 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/extern.h')
-rw-r--r-- | include/extern.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/extern.h b/include/extern.h index a242a5b4f..8a48bf69f 100644 --- a/include/extern.h +++ b/include/extern.h @@ -1138,15 +1138,15 @@ E void anope_SendGuestNick(const char *nick, const char *user,const char *host,c E void anope_cmd_message(const char *source, const char *dest, const char *fmt, ...); /* NOTICE */ E void anope_SendNoticeChanops(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 */ -E void anope_cmd_serv_notice(const char *source, const char *dest, const char *msg); /* NOTICE */ +E void anope_SendGlobalNotice(const char *source, const char *dest, const char *msg); /* NOTICE */ E void anope_cmd_part(const char *nick, const char *chan, const char *fmt, ...); /* PART */ E void anope_cmd_pass(const char *pass); /* PASS */ E void anope_cmd_pong(const char *servname, const char *who); /* PONG */ E void anope_cmd_privmsg(const char *source, const char *dest, const char *fmt, ...); /* PRIVMSG */ E void anope_cmd_action(const char *source, const char *dest, const char *fmt, ...); /* PRIVMSG */ -E void anope_cmd_serv_privmsg(const char *source, const char *dest, const char *msg); /* PRIVMSG */ +E void anope_SendGlobalPrivmsg(const char *source, const char *dest, const char *msg); /* PRIVMSG */ E void anope_cmd_protoctl(); /* PROTOCTL */ -E void anope_cmd_quit(const char *source, const char *fmt, ...); /* QUIT */ +E void anope_SendQuit(const char *source, const char *fmt, ...); /* QUIT */ E void anope_SendAkillDel(const char *user, const char *host); /* RAKILL */ E void anope_cmd_sgline(const char *mask, const char *reason); /* SGLINE */ E void anope_cmd_sqline(const char *mask, const char *reason); /* SQLINE */ |