diff options
author | George Hazan <ghazan@miranda.im> | 2018-05-28 22:38:35 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-05-28 22:39:22 +0300 |
commit | ca55ac7905e8ffd1ee979b5b5fe7121fa7a03a5d (patch) | |
tree | 2fc218f22e6fb28baa5b5efc02ab652daae97d73 /plugins/MagneticWindows | |
parent | 9250a0caadc93ec7a92b99deea151ab7a1c403da (diff) |
all plugins => CMPlugin virtual functions
Diffstat (limited to 'plugins/MagneticWindows')
-rw-r--r-- | plugins/MagneticWindows/src/MagneticWindows.cpp | 7 | ||||
-rw-r--r-- | plugins/MagneticWindows/src/stdafx.h | 2 |
2 files changed, 3 insertions, 6 deletions
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> { CMPlugin(); + + int Load() override; }; void WindowStart(); |