// ucxsstreams.h
typedef struct _STREAM_INFO {
ULONG Size;
WDFQUEUE WdfQueue;
ULONG StreamId;
} STREAM_INFO, *PSTREAM_INFO;
View the official Windows Driver Kit DDI referenceNo description available.
This structure stores information about a stream associated with a bulk endpoint.
SizeThe size in bytes of this structure.
WdfQueueA handle to the framework queue object that contains streams.
StreamIdThe stream identifier. The open-static streams request obtains stream identifiers that are assigned by the USB driver stack.