IltmmProcessor::get_Type Example for C++

// Having an IltmmProcessor interface, pProc: 
void GetProcessorType(IltmmProcessor *pProc) 
{ 
   long lType; 
   // try to get the type 
   HRESULT hr = pProc ->get_Type(&lType); 
   // if not video 
   if (SUCCEEDED(hr) && lType != ltmmProcessorType_LEAD_Video) 
   { 
      // do something 
   } 
} 

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