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 Collections
Raster .NET | C API | C++ Class Library | HTML5 JavaScript
Document .NET | C API | C++ Class Library | HTML5 JavaScript
Medical .NET | C API | C++ Class Library | HTML5 JavaScript
Medical Web Viewer .NET
Multimedia
Direct Show .NET | C API | Filters
Media Foundation .NET | C API | Transforms
Supported Platforms
.NET, Java, Android, and iOS/macOS Assemblies
Imaging, Medical, and Document
C API/C++ Class Libraries
Imaging, Medical, and Document
HTML5 JavaScript Libraries
Imaging, Medical, and Document