mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Removed now deprecated function.
This commit is contained in:
parent
43723f2970
commit
08bdf45aa3
|
@ -324,15 +324,6 @@ uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber)
|
||||||
return m_get_istyping(m, friendnumber);
|
return m_get_istyping(m, friendnumber);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Sets whether we send read receipts for friendnumber.
|
|
||||||
* This function is not lazy, and it will fail if yesno is not (0 or 1).
|
|
||||||
*/
|
|
||||||
void tox_set_sends_receipts(Tox *tox, int32_t friendnumber, int yesno)
|
|
||||||
{
|
|
||||||
Messenger *m = tox;
|
|
||||||
m_set_sends_receipts(m, friendnumber, yesno);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* Return the number of friends in the instance m.
|
/* Return the number of friends in the instance m.
|
||||||
* You should use this to determine how much memory to allocate
|
* You should use this to determine how much memory to allocate
|
||||||
* for copy_friendlist. */
|
* for copy_friendlist. */
|
||||||
|
|
|
@ -267,11 +267,6 @@ int tox_set_user_is_typing(Tox *tox, int32_t friendnumber, uint8_t is_typing);
|
||||||
*/
|
*/
|
||||||
uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber);
|
uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber);
|
||||||
|
|
||||||
/* Sets whether we send read receipts for friendnumber.
|
|
||||||
* This function is not lazy, and it will fail if yesno is not (0 or 1).
|
|
||||||
*/
|
|
||||||
void tox_set_sends_receipts(Tox *tox, int32_t friendnumber, int yesno);
|
|
||||||
|
|
||||||
/* Return the number of friends in the instance m.
|
/* Return the number of friends in the instance m.
|
||||||
* You should use this to determine how much memory to allocate
|
* You should use this to determine how much memory to allocate
|
||||||
* for copy_friendlist. */
|
* for copy_friendlist. */
|
||||||
|
|
Loading…
Reference in New Issue
Block a user