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/Toaster/src/main.cpp | 9 +-------- plugins/Toaster/src/stdafx.h | 2 ++ 2 files changed, 3 insertions(+), 8 deletions(-) (limited to 'plugins/Toaster/src') diff --git a/plugins/Toaster/src/main.cpp b/plugins/Toaster/src/main.cpp index 872d733ee3..cd51eb9819 100644 --- a/plugins/Toaster/src/main.cpp +++ b/plugins/Toaster/src/main.cpp @@ -43,7 +43,7 @@ static int OnPreShutdown(WPARAM, LPARAM) return 0; } -extern "C" int __declspec(dllexport) Load(void) +int CMPlugin::Load() { if (!IsWinVer8Plus()) { MessageBox(nullptr, TranslateT("This plugin requires Windows 8 or higher"), _T(MODULENAME), MB_OK | MB_ICONERROR); @@ -66,10 +66,3 @@ extern "C" int __declspec(dllexport) Load(void) return 0; } - -///////////////////////////////////////////////////////////////////////////////////////// - -extern "C" int __declspec(dllexport) Unload(void) -{ - return 0; -} diff --git a/plugins/Toaster/src/stdafx.h b/plugins/Toaster/src/stdafx.h index a5914af140..460861ee91 100644 --- a/plugins/Toaster/src/stdafx.h +++ b/plugins/Toaster/src/stdafx.h @@ -35,6 +35,8 @@ const wchar_t AppUserModelID[] = L"MirandaNG"; struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; }; class ToastNotification; -- cgit v1.2.3