diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:11 +0000 |
commit | 6fa5553b4ba46641b94025cfee7de07550823fdf (patch) | |
tree | 2ef8e76a7f2125819bc4055c7117bd12899d7292 /src/protocol/charybdis.h | |
parent | efb458a927ce9b0d3542c0fe6093c898f171f036 (diff) |
Added cmd_notice() function to IRCDProtoNew class. (Replaces cmd_notice2)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1229 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/protocol/charybdis.h')
-rw-r--r-- | src/protocol/charybdis.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/protocol/charybdis.h b/src/protocol/charybdis.h index a7b5ca880..891949a6d 100644 --- a/src/protocol/charybdis.h +++ b/src/protocol/charybdis.h @@ -51,7 +51,6 @@ void charybdis_cmd_372(const char *source, const char *msg); void charybdis_cmd_372_error(const char *source); void charybdis_cmd_375(const char *source); void charybdis_cmd_376(const char *source); -void charybdis_cmd_notice2(const char *source, const char *dest, const char *msg); void charybdis_cmd_serv_notice(const char *source, const char *dest, const char *msg); void charybdis_cmd_serv_privmsg(const char *source, const char *dest, const char *msg); void charybdis_cmd_bot_chan_mode(const char *nick, const char *chan); @@ -114,5 +113,6 @@ class CharybdisProto : public IRCDProtoNew { void cmd_kick(const char *, const char *, const char *, const char *); void cmd_notice_ops(const char *, const char *, const char *); void cmd_message(const char *, const char *, const char *); + void cmd_notice(const char *, const char *, const char *); void cmd_privmsg(const char *, const char *, const char *); } ircd_proto; |