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_t | base The common properties for all events. |
| VX_HANDLE | account_handle The handle returned from a successful login request. |
| int | buddy_count The count of the number of buddies. |
| vx_buddy_t ** | buddies An array of pointers to buddies. |
| int | group_count The count of the number of groups. |
| vx_group_t ** | groups An array of buddy group pointers. |
Detailed Description
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.struct vx_evt_buddy_and_group_list_changed;
Public Attributes Documentation
variable base
The common properties for all events.vx_evt_base_t base;
variable account_handle
The handle returned from a successful login request.VX_HANDLE account_handle;
variable buddy_count
The count of the number of buddies.int buddy_count;
variable buddies
An array of pointers to buddies.vx_buddy_t ** buddies;
variable group_count
The count of the number of groups.int group_count;
variable groups
An array of buddy group pointers.vx_group_t ** groups;