diff options
author | George Hazan <george.hazan@gmail.com> | 2015-04-26 22:55:43 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-04-26 22:55:43 +0000 |
commit | a28ecf67e43b45f0a4d9787f2eb96de6be0f0b85 (patch) | |
tree | 7758ddda4e733368852ec0e1edf9bea5f5878687 /protocols/Dummy/src/dummy_proto.cpp | |
parent | 2c9a9bfed50529645b5b0d5602b2a94b0b5ef900 (diff) |
unified project for Dummy protocol
git-svn-id: http://svn.miranda-ng.org/main/trunk@13183 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Dummy/src/dummy_proto.cpp')
-rw-r--r-- | protocols/Dummy/src/dummy_proto.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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; } |