pjsua_acc_get_info method

int pjsua_acc_get_info(
  1. int acc_id,
  2. Pointer<pjsua_acc_info> info
)

Get information about the specified account.

@param acc_id Account identification. @param info Pointer to receive account information.

@return PJ_SUCCESS on success, or the appropriate error code.

Implementation

int pjsua_acc_get_info(
  int acc_id,
  ffi.Pointer<pjsua_acc_info> info,
) {
  return _pjsua_acc_get_info(
    acc_id,
    info,
  );
}