KSPROPERTY_STEPPING_LONG structure (ks.h)

The KSPROPERTY_STEPPING_LONG structure defines the valid range of values for a 32-bit property.

Syntax

typedef struct {
  ULONG                  SteppingDelta;
  ULONG                  Reserved;
  KSPROPERTY_BOUNDS_LONG Bounds;
} KSPROPERTY_STEPPING_LONG, *PKSPROPERTY_STEPPING_LONG;

Members

SteppingDelta

Specifies the step value that should be used to create legal values within the range defined in Bounds.

Reserved

Reserved for system use.

Bounds

A structure of type KSPROPERTY_BOUNDS_LONG that specifies the range of values over which the SteppingDelta is valid.

Remarks

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.

Requirements

Requirement Value
Header ks.h (include Ks.h)

See also

KSPROPERTY_BOUNDS_LONG

KSPROPERTY_MEMBERSLIST