summaryrefslogtreecommitdiff
path: root/plugins/Spamotron
diff options
context:
space:
mode:
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