// 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 reference
No description available.
The _BRB_SCO_FLUSH_CHANNEL structure describes a flush operation for a SCO channel.
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 flush.
FlushFlags
Valid 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.