diff options
Diffstat (limited to 'plugins/AuthState/src/main.cpp')
-rw-r--r-- | plugins/AuthState/src/main.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/plugins/AuthState/src/main.cpp b/plugins/AuthState/src/main.cpp index c40764c10f..dfec97add4 100644 --- a/plugins/AuthState/src/main.cpp +++ b/plugins/AuthState/src/main.cpp @@ -162,7 +162,7 @@ int onModulesLoaded(WPARAM, LPARAM) return 0;
}
-extern "C" int __declspec(dllexport) Load(void)
+int CMPlugin::Load()
{
HookEvent(ME_SYSTEM_MODULESLOADED, onModulesLoaded);
HookEvent(ME_DB_CONTACT_SETTINGCHANGED, onContactSettingChanged);
@@ -183,8 +183,3 @@ extern "C" int __declspec(dllexport) Load(void) return 0;
}
-
-extern "C" int __declspec(dllexport) Unload(void)
-{
- return 0;
-}
|