Rémi Bernon (@rbernon) commented about dlls/bluetoothapis/main.c:
+ SetLastError( ERROR_INVALID_PARAMETER ); + return NULL; + } + if (params->dwSize != sizeof( *params )) + { + SetLastError( ERROR_REVISION_MISMATCH ); + return NULL; + } + if (!(find = calloc( 1, sizeof( *find ) ))) + { + SetLastError( ERROR_OUTOFMEMORY ); + return NULL; + } + + find->devinfo = + SetupDiGetClassDevsW( &GUID_BTHPORT_DEVICE_INTERFACE, NULL, NULL, DIGCF_PRESENT | DIGCF_DEVICEINTERFACE );
find->devinfo = SetupDiGetClassDevsW( &GUID_BTHPORT_DEVICE_INTERFACE, NULL, NULL,
DIGCF_PRESENT | DIGCF_DEVICEINTERFACE );
clang-format really likes to put dangling indents whenever it finds a line to be too long, this isn't Wine preferred code style. Please use longer lines, or wrap and align parameters instead, don't wrap right after assignments. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6924#note_89340