コード例 #1
0
ファイル: tox.c プロジェクト: askielboe/toxcore
/* Get the typing status of a friend.
 *
 * returns 0 if friend is not typing.
 * returns 1 if friend is typing.
 */
uint8_t tox_get_is_typing(const Tox *tox, int32_t friendnumber)
{
    const Messenger *m = tox;
    return m_get_istyping(m, friendnumber);
}
コード例 #2
0
ファイル: tox.c プロジェクト: zan33/ProjectTox-Core
/* Get the typing status of a friend.
 *
 * returns 0 if friend is not typing.
 * returns 1 if friend is typing.
 */
int tox_get_is_typing(Tox *tox, int friendnumber)
{
    Messenger *m = tox;
    return m_get_istyping(m, friendnumber);
}