diff options
author | George Hazan <george.hazan@gmail.com> | 2013-06-17 22:47:15 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-06-17 22:47:15 +0000 |
commit | 4b679c038af5dc4ad891ab28fe600b5f67a002b3 (patch) | |
tree | 53b51caf4f0925720baf7c2752fa5461137d07cc /plugins/SecureIM/src/crypt_misc.cpp | |
parent | 070ae988a2704d6bea4733e12f644f3d02e71b7f (diff) |
a few remaining calls of MS_PROTO_BROADCASTACK removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@5008 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/crypt_misc.cpp')
-rw-r--r-- | plugins/SecureIM/src/crypt_misc.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/plugins/SecureIM/src/crypt_misc.cpp b/plugins/SecureIM/src/crypt_misc.cpp index 1732c54ccc..aa0025038c 100644 --- a/plugins/SecureIM/src/crypt_misc.cpp +++ b/plugins/SecureIM/src/crypt_misc.cpp @@ -1,17 +1,5 @@ #include "commonheaders.h"
-int SendBroadcast(HANDLE hContact, int type, int result, HANDLE hProcess, LPARAM lParam)
-{
- ACKDATA ack = { sizeof(ack) };
- ack.szModule = GetContactProto(hContact);
- ack.hContact = hContact;
- ack.type = type;
- ack.result = result;
- ack.hProcess = hProcess;
- ack.lParam = lParam;
- return CallService(MS_PROTO_BROADCASTACK, 0, (LPARAM)&ack);
-}
-
static void sttWaitForExchange(LPVOID param)
{
HANDLE hContact = (HANDLE)param;
|