diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2013-04-20 19:35:45 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2013-04-20 19:35:45 +0000 |
commit | 2973e11eefbc41935fdac9b6040bd0d360510e05 (patch) | |
tree | 1fb57c589636c8e994beba1449ef7fe11d6ce4d8 /protocols/Skype/src/skype_proto.h | |
parent | 5b48d799fc3ebbf8bb0e9010f12954db24c91a32 (diff) |
refactoring continued
git-svn-id: http://svn.miranda-ng.org/main/trunk@4490 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index 4a31a66d21..5cf18527b5 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -239,6 +239,8 @@ public: int __cdecl OnUserInfoInit(WPARAM, LPARAM);
INT_PTR __cdecl OnAccountManagerInit(WPARAM wParam, LPARAM lParam);
+ int __cdecl OnMessagePreCreate(WPARAM, LPARAM);
+
// instances
static CSkypeProto* InitSkypeProto(const char* protoName, const wchar_t* userName);
static int UninitSkypeProto(CSkypeProto* ppro);
@@ -473,11 +475,13 @@ protected: void RaiseMessageReceivedEvent(
HANDLE hContact,
DWORD timestamp,
+ const char* guid,
const wchar_t *message,
bool isNeedCheck = true);
void RaiseMessageSendedEvent(
HANDLE hContact,
DWORD timestamp,
+ const char* guid,
const wchar_t *message);
/*void RaiseFileReceivedEvent(
DWORD timestamp,
|