CString GetErrorDescription(HRESULT code)
{
CComBSTR description;
HRESULT hr;
// create ltmsErrorInformation object
CComPtr<IltmsErrorInformation> errinfo;
hr = CoCreateInstance(__uuidof(ltmsErrorInformation), NULL, CLSCTX_ALL, __uuidof(IltmsErrorInformation), (void**) &errinfo);
if(FAILED(hr))
goto error;
// get error description
hr = errinfo->GetErrorDescription((SCODE) code, &description);
if(FAILED(hr))
goto error;
return CString(description);
error:
// if there is an error obtaining the description, simply return the error code
CString s;
s.Format(_T("0x%08X."), (UINT) code);
return s;
}
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