From ca55ac7905e8ffd1ee979b5b5fe7121fa7a03a5d Mon Sep 17 00:00:00 2001 From: George Hazan Date: Mon, 28 May 2018 22:38:35 +0300 Subject: all plugins => CMPlugin virtual functions --- plugins/Spamotron/src/spamotron.cpp | 4 ++-- plugins/Spamotron/src/stdafx.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/Spamotron/src') diff --git a/plugins/Spamotron/src/spamotron.cpp b/plugins/Spamotron/src/spamotron.cpp index 858d2e7326..5c48d8a3f5 100644 --- a/plugins/Spamotron/src/spamotron.cpp +++ b/plugins/Spamotron/src/spamotron.cpp @@ -501,7 +501,7 @@ void RemoveNotOnListSettings() ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" __declspec(dllexport) int Load() +int CMPlugin::Load() { srand((unsigned)time(0)); bayesdb = nullptr; @@ -522,7 +522,7 @@ extern "C" __declspec(dllexport) int Load() ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" _declspec(dllexport) int Unload(void) +int CMPlugin::Unload() { RemoveNotOnListSettings(); UnhookEvent(hOptInitialize); diff --git a/plugins/Spamotron/src/stdafx.h b/plugins/Spamotron/src/stdafx.h index 66578f6329..e6e87b4136 100644 --- a/plugins/Spamotron/src/stdafx.h +++ b/plugins/Spamotron/src/stdafx.h @@ -152,6 +152,9 @@ void dequeue_messages(); struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; #ifdef _DEBUG -- cgit v1.2.3