diff options
| author | 2010-02-22 16:51:56 -0600 | |
|---|---|---|
| committer | 2010-08-03 17:32:37 -0400 | |
| commit | 4eec8751a38a155f4f4498dbdd9c0f806d56a54a (patch) | |
| tree | 772546d7a926bc34af90b1999bef2f92d1811361 /src/modules.cpp | |
| parent | dynamic_reference does not need a Creator pointer (diff) | |
Change protcol sync to not use opaque pointers
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index d2ff92ab9..dca616a93 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -130,11 +130,10 @@ void Module::OnRemoteKill(User*, User*, const std::string&, const std::string& void Module::OnUserInvite(User*, User*, Channel*, time_t) { } void Module::OnPostTopicChange(User*, Channel*, const std::string&) { } void Module::OnGetServerDescription(const std::string&, std::string&) { } -void Module::OnSyncUser(User*, Module*, void*) { } -void Module::OnSyncChannel(Channel*, Module*, void*) { } -void Module::OnSyncNetwork(Module*, void*) { } +void Module::OnSyncUser(User*, SyncTarget*) { } +void Module::OnSyncChannel(Channel*, SyncTarget*) { } +void Module::OnSyncNetwork(SyncTarget*) { } void Module::OnDecodeMetaData(Extensible*, const std::string&, const std::string&) { } -void Module::ProtoSendMetaData(void*, Extensible*, const std::string&, const std::string&) { } void Module::OnWallops(User*, const std::string&) { } void Module::OnChangeHost(User*, const std::string&) { } void Module::OnChangeName(User*, const std::string&) { } |
