HRESULT PrintMIMETypes(IltmsServer* server)
{
HRESULT hr;
long count;
CComPtr<IltmsMIMETypes> types;
// print the MIME types to stdout
_tprintf(_T("--- MIME Types ---\n\n"));
hr = server->GetMIMETypes(&types);
if(FAILED(hr))
goto error;
hr = types->get_Count(&count);
if(FAILED(hr))
goto error;
for(long i = 0; i < count; i++)
{
CComBSTR extension;
CComBSTR contenttype;
hr = types->Item(i, &extension, &contenttype);
if(FAILED(hr))
goto error;
_tprintf(_T("MIME Type[%ld]: .%s, %s\n"), i, (LPCTSTR) CString(extension), (LPCTSTR) CString(contenttype));
}
error:
_tprintf(_T("\n"));
return hr;
}
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET