예제 #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);
}