// bthioctl.h
typedef struct _BTH_LOCAL_RADIO_INFO {
BTH_DEVICE_INFO localInfo;
ULONG flags;
USHORT hciRevision;
UCHAR hciVersion;
BTH_RADIO_INFO radioInfo;
} BTH_LOCAL_RADIO_INFO, *PBTH_LOCAL_RADIO_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
The BTH_LOCAL_RADIO_INFO structure contains information about the local Bluetooth system and radio.
localInfoA BTH_DEVICE_INFO structure that contains information about the local radio.
flagsA flag that indicates the state of the local radio. Both flags can be set at the same time. Possible values include:
LOCAL_RADIO_DISCOVERABLE
LOCAL_RADIO_CONNECTABLE
hciRevisionThe minor version of the host controller interface (HCI).
hciVersionThe major version of the HCI.
radioInfoA BTH_RADIO_INFO structure that contains information about the local radio device.
The IOCTL_BTH_GET_LOCAL_INFO call's output buffer contains the information about the local Bluetooth system and radio.