diff options
author | George Hazan <george.hazan@gmail.com> | 2014-12-14 19:57:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-12-14 19:57:43 +0000 |
commit | 2a984f7b7b1fc33af714c3346badd0df6ca459bc (patch) | |
tree | f0cfa6f787c5266103f452892068b877b65c3923 /protocols/IRCG/src | |
parent | c853aaab25885ec145e5e8a9500c269192baf6e4 (diff) |
IRC: warning level 4
git-svn-id: http://svn.miranda-ng.org/main/trunk@11423 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/IRCG/src')
-rw-r--r-- | protocols/IRCG/src/main.cpp | 2 | ||||
-rw-r--r-- | protocols/IRCG/src/scripting.cpp | 2 | ||||
-rw-r--r-- | protocols/IRCG/src/services.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/protocols/IRCG/src/main.cpp b/protocols/IRCG/src/main.cpp index e5d7dc7e3a..12760a4a8a 100644 --- a/protocols/IRCG/src/main.cpp +++ b/protocols/IRCG/src/main.cpp @@ -63,7 +63,7 @@ extern "C" BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD, LPVOID) return TRUE;
}
-extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD mirandaVersion)
+extern "C" __declspec(dllexport) PLUGININFOEX* MirandaPluginInfoEx(DWORD)
{
return &pluginInfo;
}
diff --git a/protocols/IRCG/src/scripting.cpp b/protocols/IRCG/src/scripting.cpp index cbbd1679f7..2da94329df 100644 --- a/protocols/IRCG/src/scripting.cpp +++ b/protocols/IRCG/src/scripting.cpp @@ -48,7 +48,7 @@ INT_PTR __cdecl CIrcProto::Scripting_InsertRawOut( WPARAM, LPARAM lParam ) return 1;
}
-INT_PTR __cdecl CIrcProto::Scripting_InsertGuiIn(WPARAM wParam,LPARAM lParam)
+INT_PTR __cdecl CIrcProto::Scripting_InsertGuiIn(WPARAM, LPARAM)
{
return 1;
}
diff --git a/protocols/IRCG/src/services.cpp b/protocols/IRCG/src/services.cpp index 2fb8ea9c0a..9d0bed7754 100644 --- a/protocols/IRCG/src/services.cpp +++ b/protocols/IRCG/src/services.cpp @@ -495,7 +495,7 @@ static void DoChatFormatting(TCHAR* pszText) }
}
-int __cdecl CIrcProto::GCEventHook(WPARAM wParam, LPARAM lParam)
+int __cdecl CIrcProto::GCEventHook(WPARAM, LPARAM lParam)
{
GCHOOK *gch = (GCHOOK*)lParam;
CMString S = _T("");
|