IltmmConvert::get_WMProfile Example for C++

// This function displays the currently associated WM 
// Profile for the specified convert object 
void DisplaySelectedProfileName(IltmmConvert *pConvert) 
{ 
   USES_CONVERSION; 
   IltmmWMProfile *pCurrentProfile = NULL; 
   BSTR bstrStringName; 
   HRESULT hr; 
 
   // try to get the current profile 
   hr = pConvert->get_WMProfile(&pCurrentProfile); 
   if(FAILED(hr)) 
      return; 
 
   if (pCurrentProfile) 
   { 
      // get the profile name 
      hr = pCurrentProfile->get_Name(&bstrStringName); 
      if (FAILED(hr)) 
      { 
         pCurrentProfile->Release(); 
         return; 
      } 
 
      // display it here 
      ::MessageBox(NULL, OLE2W(bstrStringName), TEXT("Profile selected"), MB_ICONINFORMATION); 
 
      // free the bstr 
      SysFreeString(bstrStringName); 
 
      // release the profile object 
      pCurrentProfile->Release(); 
   } 
   else 
   { 
      MessageBox(NULL, TEXT("There is no profile currently selected"), TEXT("Profile selected"), MB_ICONINFORMATION); 
   } 
} 
Help Version 22.0.2023.1.26
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 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.