summaryrefslogtreecommitdiff
path: root/plugins/Spamotron
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2018-05-28 22:38:35 +0300
committerGeorge Hazan <ghazan@miranda.im>2018-05-28 22:39:22 +0300
commitca55ac7905e8ffd1ee979b5b5fe7121fa7a03a5d (patch)
tree2fc218f22e6fb28baa5b5efc02ab652daae97d73 /plugins/Spamotron
parent9250a0caadc93ec7a92b99deea151ab7a1c403da (diff)
all plugins => CMPlugin virtual functions
Diffstat (limited to 'plugins/Spamotron')
-rw-r--r--plugins/Spamotron/src/spamotron.cpp4
-rw-r--r--plugins/Spamotron/src/stdafx.h3
2 files changed, 5 insertions, 2 deletions
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>
{
CMPlugin();
+
+ int Load() override;
+ int Unload() override;
};
#ifdef _DEBUG