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/MirFox/src/MirandaInterface.cpp | 4 ++-- plugins/MirFox/src/common.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/MirFox/src') diff --git a/plugins/MirFox/src/MirandaInterface.cpp b/plugins/MirFox/src/MirandaInterface.cpp index 5bd35281b1..09cb05058a 100644 --- a/plugins/MirFox/src/MirandaInterface.cpp +++ b/plugins/MirFox/src/MirandaInterface.cpp @@ -134,7 +134,7 @@ static int OnShutdown(WPARAM, LPARAM) ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" int __declspec(dllexport) Load(void) +int CMPlugin::Load() { HookEvent(ME_SYSTEM_MODULESLOADED, onModulesLoaded); HookEvent(ME_SYSTEM_SHUTDOWN, OnShutdown); @@ -160,7 +160,7 @@ extern "C" int __declspec(dllexport) Load(void) ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" __declspec (dllexport) int Unload(void) +int CMPlugin::Unload() { MFLogger::getInstance()->log(L"Unload: start"); diff --git a/plugins/MirFox/src/common.h b/plugins/MirFox/src/common.h index 21eefe49e8..2334d4f1bf 100644 --- a/plugins/MirFox/src/common.h +++ b/plugins/MirFox/src/common.h @@ -26,6 +26,9 @@ struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; //for MirandaUtils.h and MirfoxData.h and MirfoxMiranda.h -- cgit v1.2.3