diff options
author | Robert Pösel <robyer@seznam.cz> | 2014-12-04 14:00:12 +0000 |
---|---|---|
committer | Robert Pösel <robyer@seznam.cz> | 2014-12-04 14:00:12 +0000 |
commit | f16b4030068686b9f8bc1c4d22cd8c52b78a21d0 (patch) | |
tree | 020e2683044a23edd2eb0ef7db195c5220d143f9 /protocols/Steam/src/steam_proto.h | |
parent | 2eaa3458b74ffdae9c91b4eb6fe84f8145af3fa1 (diff) |
Steam:
- Save timestamp when user created his account ("MemberTS")
- Save timestamp when user was removed from friends ("DeletedTS")
- Save timestamp when user was added to friends ("ContactAddTime" in branch "UserInfo" - compatibility with UserInfoEx)
- Properly set info about deleted contacts at login
- Notify when user is deleted or added again to contacts
git-svn-id: http://svn.miranda-ng.org/main/trunk@11240 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Steam/src/steam_proto.h')
-rw-r--r-- | protocols/Steam/src/steam_proto.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/protocols/Steam/src/steam_proto.h b/protocols/Steam/src/steam_proto.h index 639cefca18..cfd173c37a 100644 --- a/protocols/Steam/src/steam_proto.h +++ b/protocols/Steam/src/steam_proto.h @@ -195,6 +195,11 @@ protected: MCONTACT GetContactFromAuthEvent(HANDLE hEvent);
void UpdateContact(MCONTACT hContact, JSONNODE *data);
+ void ProcessContact(std::map<std::string, JSONNODE*>::iterator *it, MCONTACT hContact);
+
+ void ContactIsRemoved(MCONTACT hContact);
+ void ContactIsFriend(MCONTACT hContact);
+ void ContactIsIgnored(MCONTACT hContact);
MCONTACT FindContact(const char *steamId);
MCONTACT AddContact(const char *steamId, bool isTemporary = false);
|