diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-10 21:16:34 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-08-10 21:16:34 +0000 |
commit | 7196463c057555a935707304b48e0a2ab2ea3443 (patch) | |
tree | 3cef64ade4703d5656c22ed9933c193730b7fc13 /plugins/TopToolBar/src/main.cpp | |
parent | 95d8d4c224de772a494b3c658c8b8990c577d173 (diff) |
TopToolBar:
- warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14903 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TopToolBar/src/main.cpp')
-rw-r--r-- | plugins/TopToolBar/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TopToolBar/src/main.cpp b/plugins/TopToolBar/src/main.cpp index 4326704b39..f6470e244e 100644 --- a/plugins/TopToolBar/src/main.cpp +++ b/plugins/TopToolBar/src/main.cpp @@ -20,7 +20,7 @@ PLUGININFOEX pluginInfo = {0xf593c752, 0x51d8, 0x4d46, {0xba, 0x27, 0x37, 0x57, 0x79, 0x53, 0xf5, 0x5c}}
};
-extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX *MirandaPluginInfoEx(DWORD)
{
return &pluginInfo;
}
@@ -46,7 +46,7 @@ extern "C" int __declspec(dllexport) Unload(void) /////////////////////////////////////////////////////////////////////////////////////////
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
|