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/Alarms/src/alarms.cpp | 9 +-------- plugins/Alarms/src/stdafx.h | 2 ++ 2 files changed, 3 insertions(+), 8 deletions(-) (limited to 'plugins/Alarms/src') diff --git a/plugins/Alarms/src/alarms.cpp b/plugins/Alarms/src/alarms.cpp index 55cc434915..50505dff78 100644 --- a/plugins/Alarms/src/alarms.cpp +++ b/plugins/Alarms/src/alarms.cpp @@ -143,7 +143,7 @@ static int MainDeInit(WPARAM, LPARAM) return 0; } -extern "C" int __declspec(dllexport) Load(void) +int CMPlugin::Load() { // ensure datetime picker is loaded INITCOMMONCONTROLSEX ccx; @@ -164,10 +164,3 @@ extern "C" int __declspec(dllexport) Load(void) return 0; } - -///////////////////////////////////////////////////////////////////////////////////////// - -extern "C" int __declspec(dllexport) Unload(void) -{ - return 0; -} diff --git a/plugins/Alarms/src/stdafx.h b/plugins/Alarms/src/stdafx.h index 149933f902..edb0265094 100755 --- a/plugins/Alarms/src/stdafx.h +++ b/plugins/Alarms/src/stdafx.h @@ -54,6 +54,8 @@ typedef struct ALARM_tag { struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; }; extern HANDLE hTopToolbarButton; -- cgit v1.2.3