// ks.h
typedef struct {
ULONG SteppingDelta;
ULONG Reserved;
KSPROPERTY_BOUNDS_LONG Bounds;
} KSPROPERTY_STEPPING_LONG, *PKSPROPERTY_STEPPING_LONG;
View the official Windows Driver Kit DDI referenceNo description available.
The KSPROPERTY_STEPPING_LONG structure defines the valid range of values for a 32-bit property.
SteppingDeltaSpecifies the step value that should be used to create legal values within the range defined in Bounds.
ReservedReserved for system use.
BoundsA structure of type KSPROPERTY_BOUNDS_LONG that specifies the range of values over which the SteppingDelta is valid.
The KSPROPERTY_MEMBERSLIST structure may contain structures of this type in its Members array.
See the Testcap sample in the Windows Driver Kit (WDK) for examples of usage.
For more information, see KS Properties.