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/wbOSD/src/main.cpp | 4 ++-- plugins/wbOSD/src/stdafx.h | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) (limited to 'plugins/wbOSD/src') diff --git a/plugins/wbOSD/src/main.cpp b/plugins/wbOSD/src/main.cpp index 5126bd6dfe..3539f32de0 100644 --- a/plugins/wbOSD/src/main.cpp +++ b/plugins/wbOSD/src/main.cpp @@ -38,7 +38,7 @@ CMPlugin::CMPlugin() : ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" __declspec(dllexport) int Load() +int CMPlugin::Load() { logmsg("Load"); HookEvent(ME_SYSTEM_MODULESLOADED, MainInit); @@ -47,7 +47,7 @@ extern "C" __declspec(dllexport) int Load() ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" __declspec(dllexport) int Unload() +int CMPlugin::Unload() { logmsg("Unload"); diff --git a/plugins/wbOSD/src/stdafx.h b/plugins/wbOSD/src/stdafx.h index 1355f3787d..4a22046169 100644 --- a/plugins/wbOSD/src/stdafx.h +++ b/plugins/wbOSD/src/stdafx.h @@ -31,6 +31,9 @@ Distributed under GNU's GPL 2 or later struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; + int Unload() override; }; // Settings defaults -- cgit v1.2.3