The following code demonstrates how to add Windows Media support to the ltmmCapture Object.
// declare the windows media certificate creation functionHRESULT STDMETHODCALLTYPE WMCreateCertificate( IUnknown** pUnkCert );// link to the stub library#pragma comment(lib, "wmstub.lib")void AddWindowsMediaSupportCaptureObjectExample ( void ){HRESULT hr;IltmmCapture* pCapture = NULL;IUnknown* punkCert = NULL;// initialize the COM libraryhr = CoInitialize(NULL);if(FAILED(hr))goto error;// create the capture objecthr = CoCreateInstance(&CLSID_ltmmCapture, NULL, CLSCTX_INPROC_SERVER, &IID_IltmmCapture, (void**) &pCapture);if(FAILED(hr))goto error;// create a windows media certificatehr = WMCreateCertificate(&punkCert);if(SUCCEEDED(hr)){// assign the certificate to the capture objectIltmmCapture_put_WMCertificate (pCapture, punkCert);IUnknown_Release(punkCert);}error: // clean upif(pCapture)IUnknown_Release(pCapture);CoUninitialize();}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
