Products | Support | Send comments on this topic. | Email a link to this topic. | Back to Getting Started | Help Version 18.0.10.24
LEADTOOLS Multimedia API Help

IltmmConvert::get_DVDControl Example for C++

Show in webframe

HRESULT GetConvertDVDControl(IltmmConvert *pConvert)
{
   HRESULT  hr;
   IltmmDVDControl* pDVD;

   // try to get the DVD Control
   hr = pConvert->get_DVDControl(&pDVD);
   if (FAILED(hr))
      return hr;

   // do something with the DVD Control
   long lTitle;
   hr = pDVD->get_CurrentTitle(&lTitle);

   // release the DVD object
   pDVD->Release();

   return hr;
}
Products | Support | Contact Us | Copyright Notices
© 2006-2014 All Rights Reserved. LEAD Technologies, Inc.