On Sat Nov 30 19:27:09 2024 +0000, Rémi Bernon wrote:
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.
This is controlled by `BinPackArguments`, and setting it to `false` makes clang-format have every argument be on its own line. A little odd that it isn't configurable between these two extremes. Fixed.