diff options
Diffstat (limited to 'src/modules/m_spanningtree/main.h')
-rw-r--r-- | src/modules/m_spanningtree/main.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree/main.h b/src/modules/m_spanningtree/main.h index c184ef076..dd4f70f0f 100644 --- a/src/modules/m_spanningtree/main.h +++ b/src/modules/m_spanningtree/main.h @@ -16,6 +16,7 @@ #include "inspircd.h" #include "modules.h" +#include <stdarg.h> /** If you make a change which breaks the protocol, increment this. * If you completely change the protocol, completely change the number. @@ -141,6 +142,10 @@ class ModuleSpanningTree : public Module */ void BroadcastTimeSync(); + /** Attempt to send a message to a user + */ + void RemoteMessage(userrec* user, const char* format, ...); + /** Returns oper-specific MAP information */ const std::string MapOperInfo(TreeServer* Current); |