IltmmCapture::SaveSettingsToFile Example for C

LPOLESTR T2OLE(LPCTSTR lpt) 
{ 
   static OLECHAR lpw[512]; 
 
   if(!lpt) 
      return NULL; 
 
   lpw[0] = L'\0'; 
 
   MultiByteToWideChar(CP_ACP, 0, lpt, -1, lpw, 512); 
 
   return lpw; 
} 
 
void IltmmCapture_SaveSettingsToFile_Example (IltmmCapture* pCapture) 
{ 
   BSTR bstrFileName = SysAllocString(T2OLE(MAKE_MEDIA_PATH("Settings.lmm"))); 
 
   IltmmCapture_SaveSettingsToFile(pCapture, bstrFileName, ltmmCapture_Settings_All); 
 
   SysFreeString(bstrFileName); 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help