// bthddi.h
struct _BRB_SCO_FLUSH_CHANNEL {
BRB_HEADER Hdr;
BTH_ADDR BtAddress;
SCO_CHANNEL_HANDLE ChannelHandle;
ULONG FlushFlags;
};
View the official Windows Driver Kit DDI referenceNo description available.
The _BRB_SCO_FLUSH_CHANNEL structure describes a flush operation for a SCO channel.
HdrA BRB_HEADER structure that contains information about the current BRB.
BtAddressThe Bluetooth address of the remote device.
ChannelHandleThe handle to the SCO channel to flush.
FlushFlagsValid flags may be combined using a logical OR operation
To flush a SCO channel, profile drivers should build and send a BRB_SCO_FLUSH_CHANNEL request.
All pending data transfer IRPs will be completed with STATUS_REQUEST_ABORTED. In-progress IRPs will be completed normally, with success or failure,depending on whether the Bluetooth driver stack was able to transfer data to or from the remote device.