pjsua_call_get_info method

int pjsua_call_get_info(
  1. int call_id,
  2. Pointer<pjsua_call_info> info
)

Obtain detail information about the specified call.

@param call_id Call identification. @param info Call info to be initialized.

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

Implementation

int pjsua_call_get_info(
  int call_id,
  ffi.Pointer<pjsua_call_info> info,
) {
  return _pjsua_call_get_info(
    call_id,
    info,
  );
}