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/MagneticWindows/src/MagneticWindows.cpp | 7 +------ plugins/MagneticWindows/src/stdafx.h | 2 ++ 2 files changed, 3 insertions(+), 6 deletions(-) (limited to 'plugins/MagneticWindows') diff --git a/plugins/MagneticWindows/src/MagneticWindows.cpp b/plugins/MagneticWindows/src/MagneticWindows.cpp index 03ea94abbd..ec9f3928e7 100644 --- a/plugins/MagneticWindows/src/MagneticWindows.cpp +++ b/plugins/MagneticWindows/src/MagneticWindows.cpp @@ -106,7 +106,7 @@ int SnapPluginShutDown(WPARAM, LPARAM) // Exportet Functions /////////////////////////////////////////////////////////////////////////////////////////////////// -extern "C" int __declspec(dllexport) Load() +int CMPlugin::Load() { HookEvent(ME_SYSTEM_MODULESLOADED, SnapPluginStart); HookEvent(ME_SYSTEM_PRESHUTDOWN, SnapPluginShutDown); @@ -119,8 +119,3 @@ extern "C" int __declspec(dllexport) Load() WindowStart(); return 0; } - -extern "C" int __declspec(dllexport) Unload() -{ - return 0; -} diff --git a/plugins/MagneticWindows/src/stdafx.h b/plugins/MagneticWindows/src/stdafx.h index 962673a6ea..1bc81267c0 100644 --- a/plugins/MagneticWindows/src/stdafx.h +++ b/plugins/MagneticWindows/src/stdafx.h @@ -28,6 +28,8 @@ struct TWorkingVariables struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; }; void WindowStart(); -- cgit v1.2.3