From d60c72ac3b459dfb419bd53a6c485916b6ea7510 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Sat, 25 Jul 2015 13:58:29 +0000 Subject: warnings fixed git-svn-id: http://svn.miranda-ng.org/main/trunk@14686 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/Import/src/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/Import/src/main.cpp') diff --git a/plugins/Import/src/main.cpp b/plugins/Import/src/main.cpp index 4882015f5d..63b33f4709 100644 --- a/plugins/Import/src/main.cpp +++ b/plugins/Import/src/main.cpp @@ -47,13 +47,13 @@ PLUGININFOEX pluginInfo = {0x2d77a746, 0xa6, 0x4343, {0xbf, 0xc5, 0xf8, 0x8, 0xcd, 0xd7, 0x72, 0xea}} }; -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID) { hInst = hinstDLL; return TRUE; } -static INT_PTR ImportCommand(WPARAM wParam,LPARAM lParam) +static INT_PTR ImportCommand(WPARAM, LPARAM) { if (IsWindow(hwndWizard)) { SetForegroundWindow(hwndWizard); @@ -67,7 +67,7 @@ static INT_PTR ImportCommand(WPARAM wParam,LPARAM lParam) ///////////////////////////////////////////////////////////////////////////////////////// // MirandaPluginInfoEx - returns an information about a plugin -extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion) +extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD) { return &pluginInfo; } @@ -80,7 +80,7 @@ extern "C" __declspec(dllexport) const MUUID MirandaInterfaces[] = {MIID_IMPORT, ///////////////////////////////////////////////////////////////////////////////////////// // Performs a primary set of actions upon plugin loading -static int ModulesLoaded(WPARAM wParam, LPARAM lParam) +static int ModulesLoaded(WPARAM, LPARAM) { if (db_get_b(NULL, IMPORT_MODULE, IMP_KEY_FR, 0)) return 0; @@ -96,7 +96,7 @@ static int ModulesLoaded(WPARAM wParam, LPARAM lParam) return 0; } -static int OnExit(WPARAM wParam, LPARAM lParam) +static int OnExit(WPARAM, LPARAM) { if (hwndWizard) SendMessage(hwndWizard, WM_CLOSE, 0, 0); -- cgit v1.2.3