summaryrefslogtreecommitdiff
path: root/plugins/Import/src/main.cpp
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-07-25 13:58:29 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-07-25 13:58:29 +0000
commitd60c72ac3b459dfb419bd53a6c485916b6ea7510 (patch)
tree45c696eb16a111ac71533f79d68311512c191ba6 /plugins/Import/src/main.cpp
parenta4888d0a3d58a13ade8d9c496a228570e2b2adb6 (diff)
warnings fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@14686 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Import/src/main.cpp')
-rw-r--r--plugins/Import/src/main.cpp10
1 files changed, 5 insertions, 5 deletions
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);