summaryrefslogtreecommitdiff
path: root/protocols/Tox/include
diff options
context:
space:
mode:
authorAlexander Lantsev <aunsane@gmail.com>2015-07-15 21:13:56 +0000
committerAlexander Lantsev <aunsane@gmail.com>2015-07-15 21:13:56 +0000
commit31591520f0dfefa04a9e4379f1a25be80298ea1e (patch)
treece2ac6015655c9992b872c830deab7160a3553a8 /protocols/Tox/include
parentde98f325061f64cc3be923aa8bb8f5a619711549 (diff)
Tox:
- removed senseless pause command that breaks the transfer - updated tox core - version bump git-svn-id: http://svn.miranda-ng.org/main/trunk@14576 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/Tox/include')
-rw-r--r--protocols/Tox/include/tox.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/Tox/include/tox.h b/protocols/Tox/include/tox.h
index f2a27006bc..e483c62e3b 100644
--- a/protocols/Tox/include/tox.h
+++ b/protocols/Tox/include/tox.h
@@ -1282,7 +1282,7 @@ void tox_callback_friend_name(Tox *tox, tox_friend_name_cb *callback, void *user
size_t tox_friend_get_status_message_size(const Tox *tox, uint32_t friend_number, TOX_ERR_FRIEND_QUERY *error);
/**
- * Write the name of the friend designated by the given friend number to a byte
+ * Write the status message of the friend designated by the given friend number to a byte
* array.
*
* Call tox_friend_get_status_message_size to determine the allocation size for the `status_name`
@@ -1291,7 +1291,7 @@ size_t tox_friend_get_status_message_size(const Tox *tox, uint32_t friend_number
* The data written to `status_message` is equal to the data received by the last
* `friend_status_message` callback.
*
- * @param name A valid memory region large enough to store the friend's name.
+ * @param status_message A valid memory region large enough to store the friend's status message.
*/
bool tox_friend_get_status_message(const Tox *tox, uint32_t friend_number, uint8_t *status_message,
TOX_ERR_FRIEND_QUERY *error);