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/Clist_nicer/src/init.cpp | 4 ++-- plugins/Clist_nicer/src/stdafx.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/Clist_nicer/src') diff --git a/plugins/Clist_nicer/src/init.cpp b/plugins/Clist_nicer/src/init.cpp index d745f1e13d..d4132cf8a7 100644 --- a/plugins/Clist_nicer/src/init.cpp +++ b/plugins/Clist_nicer/src/init.cpp @@ -221,14 +221,14 @@ extern "C" int __declspec(dllexport) CListInitialise() ///////////////////////////////////////////////////////////////////////////////////////// // a plugin loader aware of CList exports will never call this. -extern "C" int __declspec(dllexport) Load(void) +int CMPlugin::Load() { return 1; } ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" int __declspec(dllexport) Unload(void) +int CMPlugin::Unload() { if (IsWindow(g_clistApi.hwndContactList)) DestroyWindow(g_clistApi.hwndContactList); diff --git a/plugins/Clist_nicer/src/stdafx.h b/plugins/Clist_nicer/src/stdafx.h index 095baf763d..bab2bf55c3 100644 --- a/plugins/Clist_nicer/src/stdafx.h +++ b/plugins/Clist_nicer/src/stdafx.h @@ -75,6 +75,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; // shared vars -- cgit v1.2.3