summaryrefslogtreecommitdiff
path: root/src/modules.cpp
diff options
context:
space:
mode:
authorGravatar brain2005-11-30 22:00:34 +0000
committerGravatar brain2005-11-30 22:00:34 +0000
commite1a92daeb657da58dcfcc2f1256193cb72295635 (patch)
treea93211dba5725729e5a442b0061d2d20aee602c8 /src/modules.cpp
parentFixed bug where half-registered users would be propogated if they were half c... (diff)
Added opaque protocol functions
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2069 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
-rw-r--r--src/modules.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp
index 0541c266d..8a5fa052a 100644
--- a/src/modules.cpp
+++ b/src/modules.cpp
@@ -366,6 +366,10 @@ void Module::OnRemoteKill(userrec* source, userrec* dest, std::string reason)
void Module::OnUserInvite(userrec* source,userrec* dest,chanrec* channel) { };
void Module::OnPostLocalTopicChange(userrec* user, chanrec* chan, std::string topic) { };
void Module::OnGetServerDescription(std::string servername,std::string &description) { };
+void Module::OnSyncUser(userrec* user, Module* proto, void* opaque) { };
+void Module::OnSyncChannel(chanrec* chan, Module* proto, void* opaque) { };
+void Module::ProtoSendMode(void* opaque, int target_type, void* target, std::string modeline) { };
+
// server is a wrapper class that provides methods to all of the C-style
// exports in the core