diff options
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 0015b5422b..a8f9d20acb 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -402,19 +402,19 @@ protected: int OnPrebuildContactMenu(WPARAM wParam, LPARAM);
// database
- bool IsMessageInDB(HANDLE hContact, DWORD timestamp, const char* guid, int flag = 0);
+ 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,
- const char* guid,
+ SEBinary &guid,
const char *message,
bool isUnreaded = true);
void RaiseMessageSendedEvent(
HANDLE hContact,
DWORD timestamp,
- const char* guid,
+ SEBinary &guid,
const char *message,
bool isUnreaded = true);
void RaiseAuthRequestEvent(
|