summaryrefslogtreecommitdiff
path: root/plugins/MagneticWindows/src
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MagneticWindows/src')
-rw-r--r--plugins/MagneticWindows/src/MagneticWindows.cpp7
-rw-r--r--plugins/MagneticWindows/src/stdafx.h2
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();