1
0
mirror of https://github.com/anope/anope.git synced 2026-07-10 22:43:14 +02:00

Added cmd_topic() function to IRCDProtoNew class.

git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1209 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
Robin Burchell w00t@inspircd.org
2008-09-30 18:45:10 +00:00
parent f9b628b0d3
commit cef2f72082
13 changed files with 20 additions and 50 deletions
+1 -1
View File
@@ -1075,7 +1075,6 @@ struct session_ {
**/
typedef struct ircd_proto_ {
void (*ircd_set_mod_current_buffer)(int ac, char **av);
void (*ircd_cmd_topic)(const char *whosets, const char *chan, const char *whosetit, const char *topic, time_t when);
void (*ircd_cmd_vhost_off)(User * u);
void (*ircd_cmd_akill)(const char *user, const char *host, const char *who, time_t when,time_t expires, const char *reason);
void (*ircd_cmd_svskill)(const char *source, const char *user, const char *buf);
@@ -1151,6 +1150,7 @@ 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;
};
typedef struct ircd_modes_ {