6 Mar
2025
6 Mar
'25
10:58 p.m.
Elizabeth Figura (@zfigura) commented about dlls/bluetoothapis/main.c:
+ { + SetLastError( ERROR_INVALID_PARAMETER ); + return NULL; + } + if (!params->hRadio) + { + /* TODO: Perform device inquiry on all local radios */ + FIXME( "semi-stub!\n" ); + SetLastError( ERROR_INVALID_PARAMETER ); + return NULL; + } + + if (!radio_set_inquiry( params->hRadio, TRUE )) + return NULL; + Sleep( params->cTimeoutMultiplier * 1280 ); + radio_set_inquiry( params->hRadio, FALSE ); Not familiar with the implementation, but is this part not supposed to be guarded out by fIssueInquiry?
-- https://gitlab.winehq.org/wine/wine/-/merge_requests/7472#note_97038