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 | efb458a927ce9b0d3542c0fe6093c898f171f036 (patch) | |
tree | b1cddcf8f8308f96d2ddf823e45fbf9f28d81a31 | |
parent | 58ab9f234cdabbf1a181fcd4d090a7b7b98836cc (diff) |
Removed variable names in function prototypes in base IRCDProtoNew class.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1228 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | include/services.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/services.h b/include/services.h index 61b967b64..616044fae 100644 --- a/include/services.h +++ b/include/services.h @@ -1294,17 +1294,17 @@ class IRCDProtoNew { public: virtual void cmd_svsnoop(const char *, int) { } virtual void cmd_remove_akill(const char *, const char *) = 0; - virtual void cmd_topic(const char *whosets, const char *chan, const char *whosetit, const char *topic, time_t when) = 0; + virtual void cmd_topic(const char *, const char *, const char *, const char *, time_t) = 0; virtual void cmd_vhost_off(User *) { } virtual void cmd_akill(const char *, const char *, const char *, time_t, time_t, const char *) = 0; - virtual void cmd_svskill(const char *source, const char *user, const char *buf) = 0; - virtual void cmd_svsmode(User *u, int ac, const char **av) = 0; + virtual void cmd_svskill(const char *, const char *, const char *) = 0; + virtual void cmd_svsmode(User *, int, const char **) = 0; virtual void cmd_nick(const char *, const char *, const char *) = 0; virtual void cmd_guest_nick(const char *, const char *, const char *, const char *, const char *) { } - virtual void cmd_mode(const char *source, const char *dest, const char *buf) = 0; + virtual void cmd_mode(const char *, const char *, const char *) = 0; virtual void cmd_bot_nick(const char *, const char *, const char *, const char *, const char *) = 0; - virtual void cmd_kick(const char *source, const char *chan, const char *user, const char *buf) = 0; - virtual void cmd_notice_ops(const char *, const char *dest, const char *buf) = 0; + virtual void cmd_kick(const char *, const char *, const char *, const char *) = 0; + virtual void cmd_notice_ops(const char *, const char *, const char *) = 0; virtual void cmd_message(const char *source, const char *dest, const char *buf) { if (!buf || !dest) return; |