// ks.h
typedef struct {
ULONG MinFrameSize;
ULONG MaxFrameSize;
ULONG Stepping;
} KS_FRAMING_RANGE, *PKS_FRAMING_RANGE;
View the official Windows Driver Kit DDI referenceNo description available.
The KS_FRAMING_RANGE structure specifies a range for frame sizes for a given framing item.
MinFrameSizeSpecifies a minimum frame size of type ULONG.
MaxFrameSizeSpecifies a maximum frame size of type ULONG.
SteppingSpecifies the step value that should be used to create legal values within the range defined in MinFrameSize and MaxFrameSize.
When specifying the Stepping member, ensure that the value does not exceed the difference between the MinFrameSize and MaxFrameSize members. Otherwise, unpredictable behavior may result.