diff options
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index e7681806b6..ae9bc979f4 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -82,8 +82,15 @@ struct PasswordChangeBoxParam }
};
+class ChatMember;
+class ChatRoom;
+class ChatList;
+
struct CSkypeProto : public PROTO_INTERFACE, private Skype
{
+ friend class ChatRoom;
+ friend class ChatList;
+
public:
// PROTO_INTERFACE
CSkypeProto(const char *protoName, const wchar_t *userName);
@@ -179,6 +186,11 @@ private: const MessageRef & supersedesHistoryMessage,
const ConversationRef & conversation);
+ void OnConversationListChange(
+ const ConversationRef& conversation,
+ const Conversation::LIST_TYPE& type,
+ const bool& added);
+
int skypeKitPort;
PROCESS_INFORMATION skypeKitProcessInfo;
@@ -254,6 +266,7 @@ protected: void OnTransferChanged(CTransfer::Ref transfer, int prop);
// chat
+ ChatList *chatList;
static wchar_t* Roles[];
bool IsChatRoom(HANDLE hContact);
|