IltmmCapture::LoadSettingsFromFile Example for C++

void LoadCaptureSettingsFromFile(IltmmCapture *pCapture) 
{ 
   BSTR bstr = SysAllocString(L"C:\\Settings.lmm"); 
 
   // try to load all settings from the file 
   HRESULT hr = pCapture->LoadSettingsFromFile(bstr, ltmmCapture_Settings_All); 
 
   if (FAILED(hr)) 
      MessageBox(NULL, TEXT("Error loading capture settings!"), TEXT("Load Settings"), MB_OK); 
 
   // free the bstr 
   SysFreeString(bstr); 
} 
Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help

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