IltmmAudioInputs::put_Enable Example for C

void IltmmAudioInputs_put_Enable_Example (IltmmAudioInputs* pAudioInputs) 
{ 
   VARIANT_BOOL bEnable; 
 
   // Disable all inputs:  
   IltmmAudioInputs_put_Enable(pAudioInputs, VARIANT_FALSE);  
 
   // Now enable the currently selected input:  
   IltmmAudioInputs_put_Enable (pAudioInputs, VARIANT_FALSE); 
 
   // Check if the currently selected input is enabled:  
   IltmmAudioInputs_get_Enable(pAudioInputs, & bEnable);  
 
   if( bEnable == VARIANT_TRUE )  
   { 
      MessageBox( 0, "Info", "The selected input is enabled", 0);  
   } 
   else  
   { 
      MessageBox( 0, "Info", "All inputs are disabled", 0);  
   } 
} 
Help Version 22.0.2023.1.26
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

LEADTOOLS Multimedia C API Help

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.