// bthddi.h
struct _BRB_SCO_CLOSE_CHANNEL {
BRB_HEADER Hdr;
BTH_ADDR BtAddress;
SCO_CHANNEL_HANDLE ChannelHandle;
};
View the official Windows Driver Kit DDI reference
No description available.
The _BRB_SCO_CLOSE_CHANNEL structure describes a currently open SCO channel to close.
Hdr
A BRB_HEADER structure that contains information about the current BRB.
BtAddress
The Bluetooth address of the remote device.
ChannelHandle
The handle to the SCO channel to close.
To close a SCO channel, profile drivers should build and send a BRB_SCO_CLOSE_CHANNEL request.
A BRB_SCO_CLOSE_CHANNEL request can be made for a channel that was initiated locally or remotely. If a profile driver has multiple SCO connections to a single remote device, it must close each one individually.