summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/extern.h1
-rw-r--r--include/services.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/include/extern.h b/include/extern.h
index 63ad4cb9b..433d6bb96 100644
--- a/include/extern.h
+++ b/include/extern.h
@@ -583,6 +583,7 @@ E int init(int ac, char **av);
E int servernum;
/**** ircd.c ****/
+E void pmodule_set_mod_current_buffer(void (*func) (int ac, char **av));
E void pmodule_cmd_svsnoop(void (*func) (char *server, int set));
E void pmodule_cmd_remove_akill(void (*func) (char *user, char *host));
E void pmodule_cmd_topic(void (*func) (char *whosets, char *chan, char *whosetit, char *topic, time_t when));
diff --git a/include/services.h b/include/services.h
index e3c350217..e0017256e 100644
--- a/include/services.h
+++ b/include/services.h
@@ -1093,6 +1093,7 @@ struct session_ {
* functions, we then call the correct function for the anope_ commands.
**/
typedef struct ircd_proto_ {
+ void (*ircd_set_mod_current_buffer)(int ac, char **av);
void (*ircd_cmd_svsnoop)(char *server, int set);
void (*ircd_cmd_remove_akill)(char *user, char *host);
void (*ircd_cmd_topic)(char *whosets, char *chan, char *whosetit, char *topic, time_t when);