コード例 #1
0
ファイル: tox.c プロジェクト: askielboe/toxcore
/* Return the number of online friends in the instance m. */
uint32_t tox_get_num_online_friends(const Tox *tox)
{
    const Messenger *m = tox;
    return get_num_online_friends(m);
}
コード例 #2
0
ファイル: tox.c プロジェクト: zan33/ProjectTox-Core
/* Return the number of online friends in the instance m. */
size_t tox_get_num_online_friends(Tox *tox)
{
    Messenger *m = tox;
    return get_num_online_friends(m);
}