pjsua_enum_buddies method
Enumerate all buddy IDs in the buddy list. Application then can use #pjsua_buddy_get_info() to get the detail information for each buddy id.
@param ids Array of ids to be initialized. @param count On input, specifies max elements in the array. On return, it contains actual number of elements that have been initialized.
@return PJ_SUCCESS on success, or the appropriate error code.
Implementation
int pjsua_enum_buddies(
ffi.Pointer<pjsua_buddy_id> ids,
ffi.Pointer<ffi.UnsignedInt> count,
) {
return _pjsua_enum_buddies(
ids,
count,
);
}