summaryrefslogtreecommitdiff
path: root/toxcore/tox.h
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-02-16 20:57:44 -0500
committerirungentoo <irungentoo@gmail.com>2015-02-16 20:57:44 -0500
commit3f11d106daeeeacf13e6207a7042a90ece7c9325 (patch)
tree4d6dfc7e05098332b43ce7d567732a8a728d9b10 /toxcore/tox.h
parent8532dc8ae71396a3b7f0731d585c086d180e7e5f (diff)
More new api work done.
m_copy_self_statusmessage no longer takes a buffer length argument.
Diffstat (limited to 'toxcore/tox.h')
-rw-r--r--toxcore/tox.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 056dcd31..2dc1594c 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -730,7 +730,6 @@ size_t tox_self_get_name_size(Tox const *tox);
730 */ 730 */
731void tox_self_get_name(Tox const *tox, uint8_t *name); 731void tox_self_get_name(Tox const *tox, uint8_t *name);
732 732
733
734/** 733/**
735 * Set the client's status message. 734 * Set the client's status message.
736 * 735 *
@@ -760,7 +759,7 @@ size_t tox_self_get_status_message_size(Tox const *tox);
760 * Call tox_self_status_message_size to find out how much memory to allocate for 759 * Call tox_self_status_message_size to find out how much memory to allocate for
761 * the result. 760 * the result.
762 * 761 *
763 * @param name A valid memory location large enough to hold the status message. 762 * @param status A valid memory location large enough to hold the status message.
764 * If this parameter is NULL, the function has no effect. 763 * If this parameter is NULL, the function has no effect.
765 */ 764 */
766void tox_self_get_status_message(Tox const *tox, uint8_t *status); 765void tox_self_get_status_message(Tox const *tox, uint8_t *status);