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/StopSpamPlus/src/stdafx.h | 2 ++ plugins/StopSpamPlus/src/stopspam.cpp | 9 +-------- 2 files changed, 3 insertions(+), 8 deletions(-) (limited to 'plugins/StopSpamPlus') diff --git a/plugins/StopSpamPlus/src/stdafx.h b/plugins/StopSpamPlus/src/stdafx.h index 7222611019..6545486713 100644 --- a/plugins/StopSpamPlus/src/stdafx.h +++ b/plugins/StopSpamPlus/src/stdafx.h @@ -34,6 +34,8 @@ typedef std::wstring tstring; struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; }; extern char const *answeredSetting; diff --git a/plugins/StopSpamPlus/src/stopspam.cpp b/plugins/StopSpamPlus/src/stopspam.cpp index ad0d30d992..411b734f2d 100644 --- a/plugins/StopSpamPlus/src/stopspam.cpp +++ b/plugins/StopSpamPlus/src/stopspam.cpp @@ -24,7 +24,7 @@ CMPlugin::CMPlugin() : ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" int __declspec(dllexport) Load(void) +int CMPlugin::Load() { CreateServiceFunction(MS_STOPSPAM_CONTACTPASSED, IsContactPassed); @@ -46,10 +46,3 @@ extern "C" int __declspec(dllexport) Load(void) CreateServiceFunction(mi.pszService, RemoveTempContacts); return 0; } - -///////////////////////////////////////////////////////////////////////////////////////// - -extern "C" int __declspec(dllexport) Unload(void) -{ - return 0; -} \ No newline at end of file -- cgit v1.2.3