Print MIME Types Example C++

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; 
} 
Help Version 20.0.2020.5.19
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Media Streaming C API Help