diff options
author | Tobias Weimer <wishmaster51@googlemail.com> | 2015-01-09 19:38:12 +0000 |
---|---|---|
committer | Tobias Weimer <wishmaster51@googlemail.com> | 2015-01-09 19:38:12 +0000 |
commit | 8e2a004d967dd3faea172fbed655b0b45c826d54 (patch) | |
tree | d9927aa8060439235584bd0b4bbd27df86c577fe /protocols/SkypeClassic/src/filexfer.h | |
parent | 7feae2a81f7c4784805329e1d1c1682e689a4008 (diff) |
SkypeClassic:
Upmerge with leecher's repo:
-Implemented Filetransfer extensions for receiving files and avatars via SkypeProxy (sending via SkypeProxy not working yet).
-Added option to disable the check for SENT messages as newer Skype versions don't send this notification anymore.
-Various little code fixes.
Other changes:
- Fixed memory leak
- Fixed crash in x64 builds
- Translation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@11805 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/SkypeClassic/src/filexfer.h')
-rw-r--r-- | protocols/SkypeClassic/src/filexfer.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/protocols/SkypeClassic/src/filexfer.h b/protocols/SkypeClassic/src/filexfer.h new file mode 100644 index 0000000000..e35f26e900 --- /dev/null +++ b/protocols/SkypeClassic/src/filexfer.h @@ -0,0 +1,9 @@ +#include "skype.h"
+INT_PTR SkypeRecvFile(WPARAM wParam, LPARAM lParam);
+INT_PTR SkypeFileAllow(WPARAM wParam, LPARAM lParam);
+INT_PTR SkypeFileCancel(WPARAM wParam, LPARAM lParam);
+INT_PTR SkypeSendFile(WPARAM wParam, LPARAM lParam);
+
+BOOL FXHandleRecv(PROTORECVEVENT *pre, MCONTACT hContact);
+BOOL FXHandleMessage(const char *pszMsg);
+void FXFreePFTS(void *pfts);
|