diff options
Diffstat (limited to 'plugins/Quotes/src')
-rw-r--r-- | plugins/Quotes/src/Forex.cpp | 4 | ||||
-rw-r--r-- | plugins/Quotes/src/stdafx.h | 3 |
2 files changed, 5 insertions, 2 deletions
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>
{
CMPlugin();
+
+ int Load() override;
+ int Unload() override;
};
|