From 705649686832a6e12d7eea59e20528a7e61abe14 Mon Sep 17 00:00:00 2001 From: ElzorFox Date: Mon, 23 Jan 2017 13:42:53 +0500 Subject: =?UTF-8?q?VKontakte:=20rename=20option=20=E2=80=98Automatically?= =?UTF-8?q?=20wipe=20local=20contacts=20missing=20in=20your=20friend=20lis?= =?UTF-8?q?t=E2=80=99=20->=E2=80=99=20Load=20only=20friends=20to=20local?= =?UTF-8?q?=20contact=20list=E2=80=99=20rework=20loading=20clist=20logic?= =?UTF-8?q?=20(now=20if=20option=20=20=E2=80=98=20Load=20only=20friends=20?= =?UTF-8?q?to=20local=20contact=20list=E2=80=99=20is=20true,=20non-friends?= =?UTF-8?q?=20contact=20are=20not=20created=20on=20loading=20dialogs=20and?= =?UTF-8?q?=20are=20not=20cleaned=20automatically=20on=20loading=20friendl?= =?UTF-8?q?ist)=20version=20bump?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- protocols/VKontakte/src/vk_struct.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'protocols/VKontakte/src/vk_struct.h') diff --git a/protocols/VKontakte/src/vk_struct.h b/protocols/VKontakte/src/vk_struct.h index 9e04c20d98..45ddd37fcf 100644 --- a/protocols/VKontakte/src/vk_struct.h +++ b/protocols/VKontakte/src/vk_struct.h @@ -287,7 +287,7 @@ struct CVkCookie }; struct CVKOptions { - CMOption bAutoClean; + CMOption bLoadOnlyFriends; CMOption bServerDelivery; CMOption bHideChats; CMOption bMesAsUnread; @@ -363,8 +363,17 @@ struct CVKOptions { }; - struct CVKDeactivateEvent { wchar_t *wszType; char *szDescription; +}; + +struct CVKUsersAreFriend { + CVKUsersAreFriend(int _iUserId, int _iStatus) : + iUserId(_iUserId), + iStatus(_iStatus) + {} + + int iUserId; + int iStatus; }; \ No newline at end of file -- cgit v1.2.3