IltmmCapture::get_UseVideoDeviceAudio Example for C
HRESULT hr;
VARIANT_BOOL vEnable;
hr = IltmmCapture_get_UseVideoDeviceAudio (g_capture, &vEnable);
if (FAILED(hr))
return hr;
if (vEnable == VARIANT_TRUE)
{
hr = IltmmCapture_put_UseVideoDeviceAudio (g_capture, VARIANT_FALSE);
if (FAILED(hr))
return hr;
}