예제 #1
0
파일: tox.c 프로젝트: askielboe/toxcore
/* send a group action
 * return 0 on success
 * return -1 on failure
 */
int tox_group_action_send(Tox *tox, int groupnumber, const uint8_t *action, uint32_t length)
{
    Messenger *m = tox;
    return group_action_send(m, groupnumber, action, length);
}
예제 #2
0
파일: tox.c 프로젝트: zan33/ProjectTox-Core
/* send a group action
 * return 0 on success
 * return -1 on failure
 */
int tox_group_action_send(Tox *tox, int groupnumber, size_t *action, size_t length)
{
    Messenger *m = tox;
    return group_action_send(m, groupnumber, action, length);
}