BluetoothFindNextRadio function Null safety bthprops
The BluetoothFindNextRadio function finds the next Bluetooth radio.
BOOL BluetoothFindNextRadio(
HBLUETOOTH_RADIO_FIND hFind,
HANDLE *phRadio
);
Implementation
int BluetoothFindNextRadio(int hFind, Pointer<IntPtr> phRadio) {
final _BluetoothFindNextRadio = _bthprops.lookupFunction<
Int32 Function(IntPtr hFind, Pointer<IntPtr> phRadio),
int Function(
int hFind, Pointer<IntPtr> phRadio)>('BluetoothFindNextRadio');
return _BluetoothFindNextRadio(hFind, phRadio);
}