Reset Path Variables Example for C++

HRESULT ResetPathVariables(LPCTSTR folder) 
{ 
   HRESULT hr; 
   CComPtr<IltmsPathResolver> resolver; 
   // this function will reset all the variables to their default values 
   hr = CoCreateInstance(__uuidof(ltmsPathResolver), NULL, CLSCTX_ALL, __uuidof(IltmsPathResolver), (void**) &resolver); 
   if(FAILED(hr)) 
      return hr; 
   return resolver->Reset(); 
} 

Help Version 19.0.2017.10.27
Products | Support | Contact Us | Copyright Notices
© 1991-2017 LEAD Technologies, Inc. All Rights Reserved.
LEADTOOLS Media Streaming C API Help