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/CryptoPP/src/commonheaders.h | 2 ++ plugins/CryptoPP/src/main.cpp | 9 +-------- 2 files changed, 3 insertions(+), 8 deletions(-) (limited to 'plugins/CryptoPP/src') diff --git a/plugins/CryptoPP/src/commonheaders.h b/plugins/CryptoPP/src/commonheaders.h index 11b6468772..575fa7a96a 100644 --- a/plugins/CryptoPP/src/commonheaders.h +++ b/plugins/CryptoPP/src/commonheaders.h @@ -57,6 +57,8 @@ struct CMPlugin : public PLUGIN { CMPlugin(); + + int Load() override; }; extern LPCSTR szModuleName; diff --git a/plugins/CryptoPP/src/main.cpp b/plugins/CryptoPP/src/main.cpp index c0b9e72ed8..0b305a9949 100644 --- a/plugins/CryptoPP/src/main.cpp +++ b/plugins/CryptoPP/src/main.cpp @@ -41,7 +41,7 @@ int onModulesLoaded(WPARAM wParam, LPARAM lParam) return 0; } -extern "C" __declspec(dllexport) int Load() +int CMPlugin::Load() { DisableThreadLibraryCalls(g_plugin.getInst()); @@ -55,13 +55,6 @@ extern "C" __declspec(dllexport) int Load() ///////////////////////////////////////////////////////////////////////////////////////// -extern "C" __declspec(dllexport) int Unload() -{ - return 0; -} - -///////////////////////////////////////////////////////////////////////////////////////// - BOOL ExtractFileFromResource(HANDLE FH, int ResType, int ResId, DWORD* Size) { HRSRC RH = FindResource(g_plugin.getInst(), MAKEINTRESOURCE(ResId), MAKEINTRESOURCE(ResType)); -- cgit v1.2.3