示例#1
0
文件: tox.c 项目: askielboe/toxcore
int tox_get_self_name_size(const Tox *tox)
{
    const Messenger *m = tox;
    return m_get_self_name_size(m);
}
示例#2
0
文件: tox.c 项目: Jman012/toxcore
int tox_get_self_name_size(Tox *tox)
{
    Messenger *m = tox;
    return m_get_self_name_size(m);
}