BluetoothFindNextRadio 函数 (bluetoothapis.h)

BluetoothFindNextRadio 函数查找下一个蓝牙无线电。

语法

BOOL BluetoothFindNextRadio(
  [in]  HBLUETOOTH_RADIO_FIND hFind,
  [out] HANDLE                *phRadio
);

参数

[in] hFind

上一次调用 BluetoothFindFirstRadio 函数返回的句柄。 不再需要时,请使用 BluetoothFindRadioClose 关闭此句柄。

[out] phRadio

指向将返回下一个枚举单选句柄的指针。 当不再需要时,必须通过 CloseHandle 释放此句柄。

返回值

找到下一个可用单选无线电时,返回 TRUE

如果未找到新的无线电,则返回 FALSE 。 有关错误的详细信息,请调用 GetLastError 函数。 下表描述了常见错误:

返回代码 说明
ERROR_INVALID_HANDLE
句柄为 NULL
ERROR_NO_MORE_ITEMS
没有找到更多的无线电。
ERROR_OUTOFMEMORY
内存不足。

要求

要求
最低受支持的客户端 Windows Vista、Windows XP 和 SP2 [仅限桌面应用]
最低受支持的服务器 无受支持的版本
目标平台 Windows
标头 bluetoothapis.h (包括 Bthsdpdef.h、BluetoothAPIs.h)
Library Bthprops.lib
DLL bthprops.cpl

另请参阅

BLUETOOTH_FIND_RADIO_PARAMS

BluetoothFindFirstRadio

BluetoothFindRadioClose

BluetoothGetRadioInfo

GetLastError