void GetVideoCaptureSubTypes(IltmmCapture *pCapture){IltmmCaptureSubTypes* pVideoCapSubTypes;// try to get the video capture subtypes objectHRESULT hr = pCapture->get_VideoCaptureSubTypes(&pVideoCapSubTypes);if (SUCCEEDED(hr)){long lSelected;hr = pVideoCapSubTypes->get_Selection(&lSelected);if (SUCCEEDED(hr)){IltmmCaptureSubType *pVideoCapSubType;// get the currently selected subtypehr = pVideoCapSubTypes->Item(lSelected, &pVideoCapSubType);if (SUCCEEDED(hr)){BSTR bstr;// do something with the sub typepVideoCapSubType->get_FriendlyName(&bstr);// do something with the name, like display in a text box// free the stringSysFreeString(bstr);// release the capture subtype objectpVideoCapSubType->Release();}}// release the capture subtypes objectpVideoCapSubTypes->Release();}pVideoCapSubTypes->Release();}
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
