下列程式代碼範例示範如何建立簡單的電話會議。 如需IP多播多媒體視訊會議的詳細資訊,請參閱 關於 Rendezvous IP 電話語音會議。
在使用此程式碼範例之前,必須已經在進行通話,並且需要先執行過 進行通話 或 接收通話 的各項操作。
注意
此範例缺乏適用於生產環境程式碼的錯誤檢查和適當發布版本。
// From elsewhere in your code, you have obtained pBasicCall and pCallInfo,
// which are pointers to the ITBasicCallControl and ITCallInfo interfaces
// of a call currently in progress. pAddress is an ITAddress pointer.
// Create a consultation call for the conference.
ITBasicCallControl *pConsultCall;
HRESULT hr = pAddress->CreateCall(
bstrAddressToCall,
dwAddressType,
&pConsultCall
);
// If ( hr != S_OK ) process the error here.
// Move the consultation call into your conference.
// Note: If a CallHub object does not already exist, TAPI will create it.
hr = pBasicCall->Conference(
pConsultCall,
VARIANT_TRUE
);
// If ( hr != S_OK ) process the error here.
// Finish the creation of the conference.
hr = pConsultCall->Finish(FM_ASCONFERENCE);
// If ( hr != S_OK ) process the error here.
// Assuming the Finish method succeeds, the consultation call (pConsultCall)
// may transition to the CS_DISCONNECTED state or may remain connected,
// depending on the service provider.
//
// Get the ITCallHub interface pointer.
ITCallHub *pCallHub;
hr = pCallInfo->get_CallHub( pCallHub );
// If ( hr != S_OK ) process the error here.
// You can use the ITCallHub interface to obtain additional information on
// the conference. Specific capabilities depend on the TSP/MSP being used.
相關主題