diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2012-10-20 22:27:29 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2012-10-20 22:27:29 +0000 |
commit | 8942a206bef8abef8f6b9c7141d35c50d15049aa (patch) | |
tree | 8749955fc888e5b910e38c9b3721c9f1f5faba50 /protocols/Skype/src/skype_proto.h | |
parent | 01f5b9941dd8c9925fde3dfbb07fb28f41c01b51 (diff) |
- fixed contact search async loading
- added search by email
git-svn-id: http://svn.miranda-ng.org/main/trunk@2008 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Skype/src/skype_proto.h')
-rw-r--r-- | protocols/Skype/src/skype_proto.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/protocols/Skype/src/skype_proto.h b/protocols/Skype/src/skype_proto.h index a7c488d8d9..d5ce7bc220 100644 --- a/protocols/Skype/src/skype_proto.h +++ b/protocols/Skype/src/skype_proto.h @@ -139,6 +139,9 @@ protected: void UpdateContactTimezone(HANDLE hContact, CContact::Ref contact);
void UpdateContactProfile(HANDLE hContact, CContact::Ref contact);
+ void OnSearchCompleted(HANDLE hSearch);
+ void OnContactFinded(HANDLE hSearch, CContact::Ref contact);
+
void OnContactChanged(CContact::Ref contact, int prop);
void OnContactListChanged(const ContactRef& contact);
@@ -152,7 +155,9 @@ protected: void SetAllContactStatus(int status);
void __cdecl LoadContactList(void*);
- void __cdecl SearchContactBySidAsync(void*);
+ void __cdecl SearchBySidAsync(void*);
+ void __cdecl SearchByNamesAsync(void*);
+ void __cdecl SearchByEmailAsync(void*);
// utils
static char* GetCountryNameById(int countryId);
|