ILTDVDBurner::Write Example for C++

#define MAKE_MEDIA_PATH(pFileName) (TEXT("C:\\LEADTOOLS21\\Media\\")TEXT(pFileName)) 
void WriteDisc(ILTDVDBurner* pBurner) 
{ 
   HRESULT hr; 
   BSTR bstr = SysAllocString(MAKE_MEDIA_PATH("video_ts")); 
   hr = pBurner->put_InputPath(bstr); 
   SysFreeString(bstr); 
   if(SUCCEEDED(hr)) 
   { 
      bstr = SysAllocString(TEXT("VOLNAME")); 
      hr = pBurner->put_VolumeName(bstr); 
      SysFreeString(bstr); 
      if(SUCCEEDED(hr)) 
         hr = pBurner->Write(); 
   } 
   if(FAILED(hr)) 
      AfxMessageBox(TEXT("An error occurred during the disc write preparation. Operation canceled.")); 
} 
Help Version 21.0.2021.7.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Media Writer C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2021 LEAD Technologies, Inc. All Rights Reserved.