// bthddi.h
typedef enum _BRB_TYPE {
BRB_HCI_GET_LOCAL_BD_ADDR,
BRB_L2CA_REGISTER_SERVER,
BRB_L2CA_UNREGISTER_SERVER,
BRB_L2CA_OPEN_CHANNEL,
BRB_L2CA_OPEN_CHANNEL_RESPONSE,
BRB_L2CA_CLOSE_CHANNEL,
BRB_L2CA_ACL_TRANSFER,
BRB_L2CA_UPDATE_CHANNEL,
BRB_L2CA_PING,
BRB_L2CA_INFO_REQUEST,
BRB_REGISTER_PSM,
BRB_UNREGISTER_PSM,
BRB_SCO_REGISTER_SERVER,
BRB_SCO_UNREGISTER_SERVER,
BRB_SCO_OPEN_CHANNEL,
BRB_SCO_OPEN_CHANNEL_RESPONSE,
BRB_SCO_CLOSE_CHANNEL,
BRB_SCO_TRANSFER,
BRB_SCO_GET_CHANNEL_INFO,
BRB_SCO_GET_SYSTEM_INFO,
BRB_SCO_FLUSH_CHANNEL,
BRB_SCO_OPEN_UNMANAGED_CHANNEL,
BRB_SCO_OPEN_UNMANAGED_CHANNEL_RESPONSE,
BRB_L2CA_OPEN_ENHANCED_CHANNEL,
BRB_L2CA_OPEN_ENHANCED_CHANNEL_RESPONSE,
BRB_ACL_GET_MODE,
BRB_ACL_ENTER_ACTIVE_MODE,
BRB_STORED_LINK_KEY,
BRB_GET_DEVICE_INTERFACE_STRING
} BRB_TYPE;
View the official Windows Driver Kit DDI referenceNo description available.
The BRB_TYPE enumeration type is used to determine the Bluetooth request block when a profile driver builds and sends a BRB.
BRB_HCI_GET_LOCAL_BD_ADDRThis value declares a BRB of type BRB_HCI_GET_LOCAL_BD_ADDR.
BRB_L2CA_REGISTER_SERVERThis value declares a BRB of type BRB_L2CA_REGISTER_SERVER.
BRB_L2CA_UNREGISTER_SERVERThis value declares a BRB of type BRB_L2CA_UNREGISTER_SERVER.
BRB_L2CA_OPEN_CHANNELThis value declares a BRB of type BRB_L2CA_OPEN_CHANNEL.
BRB_L2CA_OPEN_CHANNEL_RESPONSEThis value declares a BRB of type BRB_L2CA_OPEN_CHANNEL_RESPONSE.
BRB_L2CA_CLOSE_CHANNELThis value declares a BRB of type BRB_L2CA_CLOSE_CHANNEL.
BRB_L2CA_ACL_TRANSFERThis value declares a BRB of type BRB_L2CA_ACL_TRANSFER.
BRB_L2CA_UPDATE_CHANNELThis value declares a BRB of type BRB_L2CA_UPDATE_CHANNEL.
BRB_L2CA_PINGThis value declares a BRB of type BRB_L2CA_PING.
BRB_L2CA_INFO_REQUESTFor internal use only. Do not use.
BRB_REGISTER_PSMThis value declares a BRB of type BRB_REGISTER_PSM.
BRB_UNREGISTER_PSMThis value declares a BRB of type BRB_UNREGISTER_PSM.
BRB_SCO_REGISTER_SERVERThis value declares a BRB of type BRB_SCO_REGISTER_SERVER.
BRB_SCO_UNREGISTER_SERVERThis value declares a BRB of type BRB_SCO_UNREGISTER_SERVER.
BRB_SCO_OPEN_CHANNELThis value declares a BRB of type BRB_SCO_OPEN_CHANNEL.
BRB_SCO_OPEN_CHANNEL_RESPONSEThis value declares a BRB of type BRB_SCO_OPEN_CHANNEL_RESPONSE.
BRB_SCO_CLOSE_CHANNELThis value declares a BRB of type BRB_SCO_CLOSE_CHANNEL.
BRB_SCO_TRANSFERThis value declares a BRB of type BRB_SCO_TRANSFER.
BRB_SCO_GET_CHANNEL_INFOThis value declares a BRB of type BRB_SCO_GET_CHANNEL_INFO.
BRB_SCO_GET_SYSTEM_INFOThis value declares a BRB of type BRB_SCO_GET_SYSTEM_INFO.
BRB_SCO_FLUSH_CHANNELThis value declares a BRB of type BRB_SCO_FLUSH_CHANNEL.
BRB_SCO_OPEN_UNMANAGED_CHANNELThis value declares a BRB of type BRB_SCO_OPEN_CHANNEL.
BRB_SCO_OPEN_UNMANAGED_CHANNEL_RESPONSEThis value declares a BRB of type BRB_SCO_OPEN_CHANNEL_RESPONSE.
BRB_L2CA_OPEN_ENHANCED_CHANNELThis value declares a BRB of type BRB_L2CA_OPEN_CHANNEL. This value is present in Windows 8 and later versions of Windows.
BRB_L2CA_OPEN_ENHANCED_CHANNEL_RESPONSEThis value declares a BRB of type BRB_L2CA_OPEN_CHANNEL_RESPONSE. This value is present in Windows 8 and later versions of Windows.
BRB_ACL_GET_MODEBRB_ACL_ENTER_ACTIVE_MODEThis value declares a BRB of type BRB_ACL_ENTER_ACTIVE_MODE.
BRB_STORED_LINK_KEYFor internal use only. Do not use.
BRB_GET_DEVICE_INTERFACE_STRINGThis value declares a BRB of type BRB_GET_DEVICE_INTERFACE_STRING.
The type of BRB is specified in the Type member of the BRB_HEADER structure. The BthAllocateBrb and BthInitializeBrb functions automatically set the Type member.