Set Root Folder Example for C++

HRESULT SetRootFolder(LPCTSTR folder) 
{ 
   HRESULT hr; 
   CComPtr<IltmsPathResolver> resolver; 
 
   // this function will change the root folder for the ltmsMediaFolder, ltmsLogFolder, and ltmsConfigFolder variables 
   hr = CoCreateInstance(__uuidof(ltmsPathResolver), NULL, CLSCTX_ALL, __uuidof(IltmsPathResolver), (void**) &resolver); 
   if(FAILED(hr)) 
      return hr; 
 
   return resolver->Add(CComBSTR(L"ltmsRootFolder"), CComBSTR(folder)); 
} 
Help Version 20.0.2020.4.2
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2020 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Media Streaming C API Help