Rémi Bernon (@rbernon) commented about dlls/bluetoothapis/main.c:
*/ HBLUETOOTH_RADIO_FIND WINAPI BluetoothFindFirstRadio(BLUETOOTH_FIND_RADIO_PARAMS *params, HANDLE *radio) {
- FIXME("(%p %p): stub!\n", params, radio);
- *radio = NULL;
- SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
- char buffer[sizeof(SP_DEVICE_INTERFACE_DETAIL_DATA_W) + MAX_PATH * sizeof(WCHAR)];
- SP_DEVICE_INTERFACE_DETAIL_DATA_W *iface_detail;
- struct bluetooth_find_radio_handle *find;
- SP_DEVICE_INTERFACE_DATA iface_data;
- HANDLE device_ret;
- BOOL found;
- TRACE("(%p, %p)\n", params, radio);
You used space-in-paren style in sdp.c and in tests now, let's keep the module style uniform (ignoring how these stubs have initially been written, and you can fix the function declaration style one after another while you implement them).