summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_proto.h
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2014-09-20 18:57:33 +0000
committerAlexander Lantsev <aunsane@gmail.com>2014-09-20 18:57:33 +0000
commit6c21b8918e51b66845f2555c8e3e4dc7d7a3b749 (patch)
tree16465c44f8be467404fbe992754e24dd27bf8f86 /protocols/Tox/src/tox_proto.h
parent50445999b29be69be5c9eb0e3fe340d317a0b600 (diff)
Tox:
- tox id is string again (h8!!) - updated tox core git-svn-id: http://svn.miranda-ng.org/main/trunk@10537 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/src/tox_proto.h')
-rw-r--r--protocols/Tox/src/tox_proto.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Tox/src/tox_proto.h b/protocols/Tox/src/tox_proto.h
index 6d19d708bc..7051e5c381 100644
--- a/protocols/Tox/src/tox_proto.h
+++ b/protocols/Tox/src/tox_proto.h
@@ -155,10 +155,10 @@ private:
WORD GetContactStatus(MCONTACT hContact);
void SetContactStatus(MCONTACT hContact, WORD status);
void SetAllContactsStatus(WORD status);
-
- MCONTACT FindContact(const std::vector<uint8_t> &id);
+ bool IsMe(const std::string &id);
+ MCONTACT FindContact(const std::string &id);
MCONTACT FindContact(const int friendNumber);
- MCONTACT AddContact(const std::vector<uint8_t> &id, bool isTemporary = false);
+ MCONTACT AddContact(const std::string &id, bool isTemporary = false);
MCONTACT GetContactFromAuthEvent(HANDLE hEvent);