diff options
author | George Hazan <george.hazan@gmail.com> | 2015-08-04 07:39:03 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-08-04 07:39:03 +0000 |
commit | 10a684329affeb7fd20c777e1795ad7f212815f5 (patch) | |
tree | 73ce1884c14f763f232f20a60d0db2a74c47d09c /plugins/IEHistory/src/IEHistory.cpp | |
parent | fbeb917c5230e0f64fb45e22488e91ab2f35c8f8 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14837 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/IEHistory/src/IEHistory.cpp')
-rw-r--r-- | plugins/IEHistory/src/IEHistory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/IEHistory/src/IEHistory.cpp b/plugins/IEHistory/src/IEHistory.cpp index 47e54052ec..ed4cca5b49 100644 --- a/plugins/IEHistory/src/IEHistory.cpp +++ b/plugins/IEHistory/src/IEHistory.cpp @@ -43,7 +43,7 @@ PLUGININFOEX pluginInfo = { { 0x2f093b88, 0xf389, 0x44f1, { 0x9e, 0x2a, 0x37, 0xc2, 0x91, 0x94, 0x20, 0x3a } } }; -extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion) +extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD) { return &pluginInfo; } @@ -100,7 +100,7 @@ extern "C" int __declspec(dllexport) Unload() return 0; } -BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID) { hInstance = hinstDLL; if (fdwReason == DLL_PROCESS_ATTACH) { |