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