You are here: Forum Home → ANT Developers Forums → ANT General Questions → Thread
BOOL USBDeviceHandleIOKit::CanOpenDevice(const USBDeviceIOKit*const & pclDevice_)
{
if(pclDevice_ == FALSE)
return FALSE;
return USBDeviceHandleIOKit::TryOpen(*pclDevice_);
}
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com
if(pclDevice_ == FALSE)
return FALSE;
if (pclDevice_ == nullptr)
return FALSE;
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com
——————————————————
Free Indoor Cycling Software - https://maximumtrainer.com