aboutsummaryrefslogtreecommitdiff
path: root/pseudoclients.h
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-24 11:08:29 -0400
committerTest_User <hax@andrewyu.org>2024-06-24 11:08:50 -0400
commitd095efe06273ec29bdc07c2cc522d6fe5a793550 (patch)
tree0eab2d9999ae71d5cff1ae682b54d17ad8aa98b5 /pseudoclients.h
parent7b3767d3988c3bb9c96f049ca8e5a829917c8426 (diff)
downloadhaxircd-d095efe06273ec29bdc07c2cc522d6fe5a793550.tar.gz
haxircd-d095efe06273ec29bdc07c2cc522d6fe5a793550.zip
The start of some services, inspircd3 support extra broken for now
Diffstat (limited to 'pseudoclients.h')
-rw-r--r--pseudoclients.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/pseudoclients.h b/pseudoclients.h
index 050c1a0..78bf8c0 100644
--- a/pseudoclients.h
+++ b/pseudoclients.h
@@ -48,9 +48,14 @@ int init_pseudoclients(void);
#ifdef USE_HAXSERV_PSEUDOCLIENT
#define HAXSERV_PSEUDOCLIENT 0
#endif
+#ifdef USE_SERVICES_PSEUDOCLIENT
+#define SERVICES_PSEUDOCLIENT 1
+#endif
-#define NUM_PSEUDOCLIENTS 1
+#define NUM_PSEUDOCLIENTS 2
extern struct pseudoclient pseudoclients[NUM_PSEUDOCLIENTS];
extern char reload_pseudoclients[NUM_PSEUDOCLIENTS];
+
+void pseudoclients_handle_privmsg(struct string from, struct string source, struct string target, struct string msg);