diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-15 15:55:33 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2014-12-15 15:55:33 +0000 |
commit | 9d77e8b56786904331b2805a32d245a512292be4 (patch) | |
tree | 9075bd5dc97c0c675c32725c550567a223529269 /plugins/FingerprintNG/src/main.cpp | |
parent | 4713bb2ff5b737628291e2903dd0245e3a6212e4 (diff) |
Fingerprint: changed warning lavel to w4
git-svn-id: http://svn.miranda-ng.org/main/trunk@11435 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/FingerprintNG/src/main.cpp')
-rw-r--r-- | plugins/FingerprintNG/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/FingerprintNG/src/main.cpp b/plugins/FingerprintNG/src/main.cpp index 423aecfc59..11900a06c5 100644 --- a/plugins/FingerprintNG/src/main.cpp +++ b/plugins/FingerprintNG/src/main.cpp @@ -42,16 +42,16 @@ PLUGININFOEX pluginInfoEx = { __AUTHORWEB,
UNICODE_AWARE,
// {687364AF-58B0-4AF2-A4EE-20F40A8D9AFB}
- {0x687364af, 0x58b0, 0x4af2, {0xa4, 0xee, 0x20, 0xf4, 0xa, 0x8d, 0x9a, 0xfb}}
+ { 0x687364af, 0x58b0, 0x4af2, { 0xa4, 0xee, 0x20, 0xf4, 0xa, 0x8d, 0x9a, 0xfb } }
};
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
g_hInst = hinstDLL;
return TRUE;
}
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfoEx;
}
|