// 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); } }