diff options
Diffstat (limited to 'protocols/Dummy/src')
-rw-r--r-- | protocols/Dummy/src/dummy_options.cpp | 2 | ||||
-rw-r--r-- | protocols/Dummy/src/dummy_proto.cpp | 6 | ||||
-rw-r--r-- | protocols/Dummy/src/main.cpp | 2 | ||||
-rw-r--r-- | protocols/Dummy/src/stdafx.cxx (renamed from protocols/Dummy/src/stdafx.cpp) | 0 |
4 files changed, 5 insertions, 5 deletions
diff --git a/protocols/Dummy/src/dummy_options.cpp b/protocols/Dummy/src/dummy_options.cpp index b546aa564e..c667bd5fff 100644 --- a/protocols/Dummy/src/dummy_options.cpp +++ b/protocols/Dummy/src/dummy_options.cpp @@ -80,7 +80,7 @@ INT_PTR CALLBACK DummyAccountProc(HWND hwndDlg, UINT uMsg, WPARAM wParam, LPARAM return FALSE; } -INT_PTR CDummyProto::SvcCreateAccMgrUI(WPARAM wParam, LPARAM lParam) +INT_PTR CDummyProto::SvcCreateAccMgrUI(WPARAM, LPARAM lParam) { return (INT_PTR)CreateDialogParam(hInst, MAKEINTRESOURCE(IDD_ACCMGRUI), (HWND)lParam, DummyAccountProc, (LPARAM)this); } diff --git a/protocols/Dummy/src/dummy_proto.cpp b/protocols/Dummy/src/dummy_proto.cpp index 37d0e4acfe..f7c6c6396d 100644 --- a/protocols/Dummy/src/dummy_proto.cpp +++ b/protocols/Dummy/src/dummy_proto.cpp @@ -50,7 +50,7 @@ CDummyProto::~CDummyProto() ////////////////////////////////////////////////////////////////////////////// -DWORD_PTR CDummyProto::GetCaps(int type, MCONTACT hContact) +DWORD_PTR CDummyProto::GetCaps(int type, MCONTACT) { switch(type) { case PFLAGNUM_1: @@ -92,13 +92,13 @@ DWORD_PTR CDummyProto::GetCaps(int type, MCONTACT hContact) ////////////////////////////////////////////////////////////////////////////// -int CDummyProto::SendMsg(MCONTACT hContact, int flags, const char *msg) +int CDummyProto::SendMsg(MCONTACT hContact, int, const char*) { ForkThread(&CDummyProto::SendMsgAck, (void*)hContact); return 0; } -int CDummyProto::SetStatus(int iNewStatus) +int CDummyProto::SetStatus(int) { return 0; } diff --git a/protocols/Dummy/src/main.cpp b/protocols/Dummy/src/main.cpp index 2feae8d894..b2837e36af 100644 --- a/protocols/Dummy/src/main.cpp +++ b/protocols/Dummy/src/main.cpp @@ -45,7 +45,7 @@ BOOL WINAPI DllMain(HINSTANCE hModule, 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/Dummy/src/stdafx.cpp b/protocols/Dummy/src/stdafx.cxx index 4c7b0c9368..4c7b0c9368 100644 --- a/protocols/Dummy/src/stdafx.cpp +++ b/protocols/Dummy/src/stdafx.cxx |