pjsua_acc_enum_info method
Enumerate account informations.
@param info Array of account infos to be initialized. @param count In input, specifies the maximum number of elements. On return, it contains the actual number of elements.
@return PJ_SUCCESS on success, or the appropriate error code.
Implementation
int pjsua_acc_enum_info(
ffi.Pointer<pjsua_acc_info> info,
ffi.Pointer<ffi.UnsignedInt> count,
) {
return _pjsua_acc_enum_info(
info,
count,
);
}