diff options
Diffstat (limited to 'plugins/MirFox/src')
-rw-r--r-- | plugins/MirFox/src/MirandaInterface.cpp | 4 | ||||
-rw-r--r-- | plugins/MirFox/src/common.h | 3 |
2 files changed, 5 insertions, 2 deletions
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>
{
CMPlugin();
+
+ int Load() override;
+ int Unload() override;
};
//for MirandaUtils.h and MirfoxData.h and MirfoxMiranda.h
|