IltmmWMProfileManager::SaveProfileEx Example for C++

For complete code, refer to the CNVWM demo.

void DisplayContent(int i, IltmmWMProfileManager *pProfileManager) 
{ 
   USES_CONVERSION; 
   IltmmWMProfile *pProfile = NULL; 
   BSTR bstrString; 
 
   // try to load the profile and save it to a bstr 
   HRESULT hr = pProfileManager->LoadSystemProfile(i, &pProfile); 
   if (SUCCEEDED(hr)) 
   { 
      // try to save the profile to the bstr provided 
      hr = pProfileManager->SaveProfile(pProfile, &bstrString); 
       
      if (SUCCEEDED(hr)) 
      { 
         // display it here 
         MessageBox(NULL, bstrString, TEXT("Profile Content"), MB_OK); 
 
         // free the bstr 
         SysFreeString(bstrString); 
      } 
      else 
         MessageBox(NULL, TEXT("Error occurred during the WMProfile save"), TEXT("Profile Content"), MB_OK); 
       
      // release the profile object 
      pProfile->Release(); 
   } 
   else 
      MessageBox(NULL, TEXT("Error occurred during the WMProfile load"), TEXT("Profile Content"), MB_OK); 
} 

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

LEADTOOLS Multimedia C API Help

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