diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 21:03:20 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2015-04-24 21:03:20 +0000 |
commit | a7fd1ec72196095ebeef4cc67cde5135c2d1d9a8 (patch) | |
tree | aa3d124a71a930b89d22fd9f5522af442aa26757 /plugins/AutoRun | |
parent | dbdf4fa2157b89d12f682c2c5a86176048a2a911 (diff) |
warning fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@13108 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/AutoRun')
-rw-r--r-- | plugins/AutoRun/src/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/AutoRun/src/main.cpp b/plugins/AutoRun/src/main.cpp index 034ac95dcd..6c2c6383af 100644 --- a/plugins/AutoRun/src/main.cpp +++ b/plugins/AutoRun/src/main.cpp @@ -18,7 +18,7 @@ PLUGININFOEX pluginInfoEx = { {0xeb0465e2, 0xceee, 0x11db, {0x83, 0xef, 0xc1, 0xbf, 0x55, 0xd8, 0x95, 0x93}}
};
-BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
+BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID)
{
hInst = hinstDLL;
return TRUE;
@@ -73,7 +73,7 @@ static BOOL CmpCurrentAndRegistry() return mir_tstrcmpi(result, dbpath) == 0;
}
-static INT_PTR CALLBACK DlgProcAutorunOpts(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam)
+static INT_PTR CALLBACK DlgProcAutorunOpts(HWND hwndDlg, UINT msg, WPARAM, LPARAM lParam)
{
switch (msg) {
case WM_INITDIALOG:
@@ -114,7 +114,7 @@ static int AutorunOptInitialise(WPARAM wParam,LPARAM) return 0;
}
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfoEx;
}
|