示例#1
0
文件: tox.c 项目: askielboe/toxcore
uint8_t tox_get_self_user_status(const Tox *tox)
{
    const Messenger *m = tox;
    return m_get_self_userstatus(m);
}
示例#2
0
USERSTATUS tox_get_selfuserstatus(void *tox)
{
    Messenger *m = tox;
    return m_get_self_userstatus(m);
}
示例#3
0
TOX_USERSTATUS tox_get_selfuserstatus(Tox *tox)
{
    Messenger *m = tox;
    return (TOX_USERSTATUS)m_get_self_userstatus(m);
}