We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 716f0a3 commit 24e94acCopy full SHA for 24e94ac
src/detection/bluetooth/bluetooth_haiku.cpp
@@ -1,12 +1,15 @@
1
extern "C" {
2
#include "bluetooth.h"
3
+#include "common/io/io.h"
4
}
5
6
#include <bluetooth/LocalDevice.h>
7
8
const char* ffDetectBluetooth(FF_MAYBE_UNUSED FFBluetoothOptions* options, FFlist* devices /* FFBluetoothResult */)
9
{
10
using namespace Bluetooth;
11
+ FF_SUPPRESS_IO();
12
+
13
LocalDevice* dev = LocalDevice::GetLocalDevice();
14
if (!dev) return NULL;
15
0 commit comments