diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:10 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-09-30 18:45:10 +0000 |
commit | f9b628b0d37844e66a8d2acae797a81444df78ba (patch) | |
tree | 64be8440b22051b5c2433969395747ca1221db34 /include | |
parent | d64b3aa890976ef888c11e1c24da5b692f1d67d3 (diff) |
Remove legacy global function.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1208 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include')
-rw-r--r-- | include/extern.h | 4 | ||||
-rw-r--r-- | include/services.h | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/include/extern.h b/include/extern.h index 437aae802..b416eede5 100644 --- a/include/extern.h +++ b/include/extern.h @@ -650,7 +650,6 @@ E void pmodule_cmd_242(void (*func) (const char *buf)); E void pmodule_cmd_243(void (*func) (const char *buf)); E void pmodule_cmd_211(void (*func) (const char *buf)); E void pmodule_cmd_global(void (*func) (const char *source, const char *buf)); -E void pmodule_cmd_global_legacy(void (*func) (const char *source, const char *fmt)); E void pmodule_cmd_sqline(void (*func) (const char *mask, const char *reason)); E void pmodule_cmd_squit(void (*func) (const char *servname, const char *message)); E void pmodule_cmd_svso(void (*func) (const char *source, const char *nick, const char *flag)); @@ -1353,9 +1352,6 @@ E int anope_flood_mode_check(const char *value); E void anope_cmd_jupe(const char *jserver, const char *who, const char *reason); -E void anope_cmd_global_legacy(const char *source, const char *fmt); -E void wallops(const char *source, const char *fmt, ...); - E int anope_valid_nick(char *nick); E int anope_valid_chan(char *chan); diff --git a/include/services.h b/include/services.h index 01514e033..b5c9dee55 100644 --- a/include/services.h +++ b/include/services.h @@ -1116,7 +1116,6 @@ typedef struct ircd_proto_ { void (*ircd_cmd_243)(const char *buf); void (*ircd_cmd_211)(const char *buf); void (*ircd_cmd_global)(const char *source, const char *buf); - void (*ircd_cmd_global_legacy)(const char *source, const char *fmt); void (*ircd_cmd_sqline)(const char *mask, const char *reason); void (*ircd_cmd_squit)(const char *servname, const char *message); void (*ircd_cmd_svso)(const char *source, const char *nick, const char *flag); |