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/ContactsPlus/src/main.cpp | 4 ++-- plugins/ContactsPlus/src/stdafx.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/ContactsPlus/src') diff --git a/plugins/ContactsPlus/src/main.cpp b/plugins/ContactsPlus/src/main.cpp index ad1a35320b..a3ff85c702 100644 --- a/plugins/ContactsPlus/src/main.cpp +++ b/plugins/ContactsPlus/src/main.cpp @@ -190,7 +190,7 @@ static INT_PTR ServiceReceiveCommand(WPARAM, LPARAM lParam) return 0; } -extern "C" __declspec(dllexport) int Load(void) +int CMPlugin::Load() { InitCommonControls(); @@ -213,7 +213,7 @@ extern "C" __declspec(dllexport) int Load(void) return 0; } -extern "C" __declspec(dllexport) int Unload(void) +int CMPlugin::Unload() { WindowList_Destroy(g_hSendWindowList); WindowList_Destroy(g_hRecvWindowList); diff --git a/plugins/ContactsPlus/src/stdafx.h b/plugins/ContactsPlus/src/stdafx.h index 839827bc9b..c83bee9491 100644 --- a/plugins/ContactsPlus/src/stdafx.h +++ b/plugins/ContactsPlus/src/stdafx.h @@ -55,6 +55,9 @@ struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; #define MS_CONTACTS_SEND "ContactsTransfer/SendContacts" -- cgit v1.2.3