BluetoothIsConnectable function Null safety bthprops
- int hRadio
The BluetoothIsConnectable function determines whether a Bluetooth radio or radios is connectable.
BOOL BluetoothIsConnectable(
HANDLE hRadio
);
Implementation
int BluetoothIsConnectable(int hRadio) {
final _BluetoothIsConnectable = _bthprops.lookupFunction<
Int32 Function(IntPtr hRadio),
int Function(int hRadio)>('BluetoothIsConnectable');
return _BluetoothIsConnectable(hRadio);
}