diff options
author | George Hazan <george.hazan@gmail.com> | 2013-05-10 19:13:36 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-05-10 19:13:36 +0000 |
commit | 326fdfc6425dd89b32e94c111d68a0384b8765a3 (patch) | |
tree | d99a73701f1be7c47e9040cb96d46cc600a0027d /protocols/Skype/src/skype_proto.h | |
parent | 97fe0e28cae9ab3d9131dc13103027cb41aa21c8 (diff) |
hangup fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@4626 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 9487e6b35e..0ae55044c2 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -20,6 +20,12 @@ struct _tag_iconList HANDLE Handle;
};
+struct ReadMessageParam
+{
+ SEBinary& guid;
+ CMessage::TYPE msgType;
+};
+
struct InviteChatParam
{
wchar_t *id;
@@ -409,18 +415,12 @@ protected: bool IsMessageInDB(HANDLE hContact, DWORD timestamp, SEBinary &guid, int flag = 0);
HANDLE AddDBEvent(HANDLE hContact, WORD type, DWORD time, DWORD flags = 0, DWORD cbBlob = 0, PBYTE pBlob = 0);
- void RaiseMessageReceivedEvent(
- HANDLE hContact,
- DWORD timestamp,
- SEBinary &guid,
- const char *message,
- bool isUnreaded = true);
void RaiseMessageSentEvent(
HANDLE hContact,
DWORD timestamp,
SEBinary &guid,
const char *message,
- bool isUnreaded = true);
+ bool isUnread = true);
void RaiseAuthRequestEvent(
DWORD timestamp,
CContact::Ref contact);
@@ -435,5 +435,4 @@ protected: static INT_PTR CALLBACK PersonalSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK ContactSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
static INT_PTR CALLBACK HomeSkypeDlgProc(HWND hwndDlg, UINT msg, WPARAM wParam, LPARAM lParam);
-
-};
\ No newline at end of file +};
|