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 --- protocols/JabberG/src/jabber.cpp | 4 ++-- protocols/JabberG/src/stdafx.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'protocols/JabberG/src') diff --git a/protocols/JabberG/src/jabber.cpp b/protocols/JabberG/src/jabber.cpp index 556a479c96..5f57a3bedd 100755 --- a/protocols/JabberG/src/jabber.cpp +++ b/protocols/JabberG/src/jabber.cpp @@ -148,7 +148,7 @@ static int OnModulesLoaded(WPARAM, LPARAM) /////////////////////////////////////////////////////////////////////////////// // OnLoad - initialize the plugin instance -extern "C" int __declspec(dllexport) Load() +int CMPlugin::Load() { char mirVer[100]; Miranda_GetVersionText(mirVer, _countof(mirVer)); @@ -176,7 +176,7 @@ extern "C" int __declspec(dllexport) Load() /////////////////////////////////////////////////////////////////////////////// // Unload - destroy the plugin instance -extern "C" int __declspec(dllexport) Unload(void) +int CMPlugin::Unload() { g_XstatusIconsUninit(); JabberUserInfoUninit(); diff --git a/protocols/JabberG/src/stdafx.h b/protocols/JabberG/src/stdafx.h index d58e95d5b0..614dd0dcb7 100755 --- a/protocols/JabberG/src/stdafx.h +++ b/protocols/JabberG/src/stdafx.h @@ -113,6 +113,9 @@ struct CJabberProto; struct CMPlugin : public ACCPROTOPLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; class CJabberDlgBase : public CProtoDlgBase -- cgit v1.2.3