diff options
author | Alexander Lantsev <aunsane@gmail.com> | 2014-09-09 19:52:07 +0000 |
---|---|---|
committer | Alexander Lantsev <aunsane@gmail.com> | 2014-09-09 19:52:07 +0000 |
commit | 56c1f62b71e28b12e83e4ee7999461f73a3367fb (patch) | |
tree | 4a8f66d01a94d3bed7bcd614d5bcaaa1250221ae /protocols/Tox/src/tox_proto.h | |
parent | 4becc46d15baf8393a347c1d3897af5d8d55dea6 (diff) |
Tox: id saves in db as blob at now
git-svn-id: http://svn.miranda-ng.org/main/trunk@10412 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r-- | protocols/Tox/src/tox_proto.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h index bd1bf4078f..96e0bd662c 100644 --- a/protocols/Tox/src/tox_proto.h +++ b/protocols/Tox/src/tox_proto.h @@ -156,9 +156,9 @@ private: void SetContactStatus(MCONTACT hContact, WORD status);
void SetAllContactsStatus(WORD status);
- MCONTACT FindContact(const std::string &id);
+ MCONTACT FindContact(const std::vector<uint8_t> &id);
MCONTACT FindContact(const int friendNumber);
- MCONTACT AddContact(const std::string &id, bool isTemporary = false);
+ MCONTACT AddContact(const std::vector<uint8_t> &id, bool isTemporary = false);
MCONTACT GetContactFromAuthEvent(HANDLE hEvent);
|