diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-05-14 20:52:44 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-05-14 20:52:44 +0000 |
commit | b28379050fa05a1a6642548d9d31c4d7d2779815 (patch) | |
tree | fd93a62553e590851c22775ac15703af9efd6734 /protocols/Skype/src/skype_proto.h | |
parent | 7babc5212cc846d2a7d1ffa964663dea497d3ef4 (diff) |
- added contact sending (via SendReceiveContacts) and receiving
- some few bug fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@4653 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index edc3e76e9c..e7681806b6 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -179,7 +179,8 @@ private: const MessageRef & supersedesHistoryMessage,
const ConversationRef & conversation);
- PROCESS_INFORMATION pi;
+ int skypeKitPort;
+ PROCESS_INFORMATION skypeKitProcessInfo;
protected:
CAccount::Ref account;
@@ -243,8 +244,13 @@ protected: void OnMessageSent(const ConversationRef &conversation, const MessageRef &message);
void OnMessageReceived(const ConversationRef &conversation, const MessageRef &message);
+ // contacts
+ void OnContactsEvent(const ConversationRef &conversation, const MessageRef &message);
+ void OnContactsSent(const ConversationRef &conversation, const MessageRef &message);
+ void OnContactsReceived(const ConversationRef &conversation, const MessageRef &message);
+
// transfer
- void OnFile(const ConversationRef &conversation, const MessageRef &message);
+ void OnFileEvent(const ConversationRef &conversation, const MessageRef &message);
void OnTransferChanged(CTransfer::Ref transfer, int prop);
// chat
@@ -453,7 +459,6 @@ protected: static INT_PTR CALLBACK HomeSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
// skype runtime
- int runtimePort;
char *LoadKeyPair();
int StartSkypeRuntime(const wchar_t *profileName);
void CSkypeProto::StopSkypeRuntime();
|