diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-31 17:34:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-31 17:34:45 +0000 |
commit | 9f32f113a011e34338b76eef83da6f006d528e61 (patch) | |
tree | e5b37d4a1c7073288556b7e2526561230acf96d9 /src/modules/protocols | |
parent | d57b6799dac75f3c428393666d079fe59361c4b5 (diff) |
fixes for the file sending
git-svn-id: http://svn.miranda-ng.org/main/trunk@13940 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/protocols')
-rw-r--r-- | src/modules/protocols/protoint.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/protocols/protoint.cpp b/src/modules/protocols/protoint.cpp index 809d78b0cc..3ad3337ce3 100644 --- a/src/modules/protocols/protoint.cpp +++ b/src/modules/protocols/protoint.cpp @@ -208,6 +208,9 @@ struct DEFAULT_PROTO_INTERFACE : public PROTO_INTERFACE {
CCSDATA ccs = { hContact, PSS_FILE, (WPARAM)szDescription, (LPARAM)ppszFiles };
+ if (m_iVersion > 1)
+ return (HANDLE)ProtoCallService(m_szModuleName, PSS_FILE, 0, (LPARAM)&ccs);
+
ccs.wParam = (WPARAM)mir_t2a(szDescription);
ccs.lParam = (LPARAM)Proto_FilesMatrixA(ppszFiles);
HANDLE res = (HANDLE)ProtoCallService(m_szModuleName, PSS_FILE, 0, (LPARAM)&ccs);
|