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/Quotes/src/Forex.cpp | 4 ++-- plugins/Quotes/src/stdafx.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/Quotes/src') diff --git a/plugins/Quotes/src/Forex.cpp b/plugins/Quotes/src/Forex.cpp index 4fedf300fe..8e501c3e80 100644 --- a/plugins/Quotes/src/Forex.cpp +++ b/plugins/Quotes/src/Forex.cpp @@ -305,7 +305,7 @@ CMPlugin::CMPlugin() : ///////////////////////////////////////////////////////////////////////////////////////// -EXTERN_C int __declspec(dllexport) Load(void) +int CMPlugin::Load(void) { if (!CModuleInfo::Verify()) return 1; @@ -329,7 +329,7 @@ EXTERN_C int __declspec(dllexport) Load(void) ///////////////////////////////////////////////////////////////////////////////////////// -EXTERN_C __declspec(dllexport) int Unload(void) +int CMPlugin::Unload(void) { WaitForWorkingThreads(); diff --git a/plugins/Quotes/src/stdafx.h b/plugins/Quotes/src/stdafx.h index b8fb295aaa..ad3d73a0cd 100644 --- a/plugins/Quotes/src/stdafx.h +++ b/plugins/Quotes/src/stdafx.h @@ -119,4 +119,7 @@ inline tstring quotes_a2t(const char* s) struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; -- cgit v1.2.3