Platform SDK: TAPI

ITRequest::MakeCall

Makes call to designated party.

HRESULT MakeCall(
  BSTR pDestAddress,
  BSTR pAppName,
  BSTR pCalledParty,
  BSTR pComment
);

Parameters

pDestAddress
[in] Pointer to BSTR containing destination address for call.
pAppName
[in] Pointer to BSTR containing name of application.
pCalledParty
[in] Pointer to BSTR containing called party name.
pComment
[in] Pointer to BSTR containing a comment.

Return Values

Value Meaning
S_OK Method succeeded.
E_OUTOFMEMORY Insufficient memory exists to perform the operation.
TAPIERR_NOREQUESTRECIPIENT No application exists that can handle the assisted telephony request.
TAPIERR_INVALDESTADDRESS The destination address is not valid.
TAPIERR_REQUESTQUEUEFULL The TAPI Server request queue is full and cannot handle another assisted telephony request.

Remarks

The application must use SysAllocString to allocate memory for the pDestAddress, pAppName, pCalledParty, and pComment parameters. The application must use SysFreeString to free the memory when the variables are no longer needed.

Requirements

  Windows NT/2000: Requires Windows 2000.
  Version: Requires TAPI 3.0 or later.
  Header: Declared in Tapi3.h.
  Library: Use T3iid.lib.

See Also

ITRequest