]> jfr.im git - solanum.git/blobdiff - authd/authd.h
ircd: modules: use LT_MODULE_EXT more consistently
[solanum.git] / authd / authd.h
index c94c534c8aa873a00ef4d024d6698fef4ea31319..771f797afb800c1cdc7756efcf8b7981a55e9f46 100644 (file)
@@ -21,7 +21,7 @@
 #ifndef _AUTHD_H
 #define _AUTHD_H
 
-#include <ratbox_lib.h>
+#include <rb_lib.h>
 #include <stdio.h>
 
 #include "setup.h"
 extern rb_helper *authd_helper;
 
 typedef void (*authd_cmd_handler)(int parc, char *parv[]);
-extern authd_cmd_handler authd_cmd_handlers[255];
+typedef void (*authd_stat_handler)(const char *rid, const char letter);
+typedef void (*authd_reload_handler)(const char letter);
+
+extern authd_cmd_handler authd_cmd_handlers[256];
+extern authd_stat_handler authd_stat_handlers[256];
+extern authd_reload_handler authd_reload_handlers[256];
 
 #endif