コード例 #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
ファイル: tox.c プロジェクト: Alek900/ProjectTox-Core
USERSTATUS tox_get_selfuserstatus(void *tox)
{
    Messenger *m = tox;
    return m_get_self_userstatus(m);
}
コード例 #3
0
ファイル: tox.c プロジェクト: Moblerox/ProjectTox-Core
TOX_USERSTATUS tox_get_selfuserstatus(Tox *tox)
{
    Messenger *m = tox;
    return (TOX_USERSTATUS)m_get_self_userstatus(m);
}