Documentation

Support

Vivox Core SDK

Vivox Core SDK

vx_evt_buddy_and_group_list_changed

Learn about buddy presence change notifications.
Read time 1 minuteLast updated 10 days ago

Presented when the buddy or group list undergoes a significant change. More...
#include <VxcEvents.h>

Public Attributes

Name

vx_evt_base_tbase
The common properties for all events.
VX_HANDLEaccount_handle
The handle returned from a successful login request.
intbuddy_count
The count of the number of buddies.
vx_buddy_t **buddies
An array of pointers to buddies.
intgroup_count
The count of the number of groups.
vx_group_t **groups
An array of buddy group pointers.

Detailed Description

struct vx_evt_buddy_and_group_list_changed;
Presented when the buddy or group list undergoes a significant change. This event is always received after login, and can be used to build the initial buddy and group UI.

Public Attributes Documentation

variable base

vx_evt_base_t base;
The common properties for all events.

variable account_handle

VX_HANDLE account_handle;
The handle returned from a successful login request.

variable buddy_count

int buddy_count;
The count of the number of buddies.

variable buddies

vx_buddy_t ** buddies;
An array of pointers to buddies.

variable group_count

int group_count;
The count of the number of groups.

variable groups

vx_group_t ** groups;
An array of buddy group pointers.