간단한 회의 만들기
다음 코드 예제에서는 간단한 전화 회의를 만드는 방법을 보여 줍니다. IP 멀티캐스트 멀티미디어 비디오 회의에 대한 자세한 내용은 랑데부 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.
관련 항목