KSPROPERTY_STEPPING_LONGLONG structure (ks.h)

The KSPROPERTY_STEPPING_LONGLONG structure defines the valid range of values for a 64-bit property.

Syntax

typedef struct {
#if ...
  ULONGLONG                  SteppingDelta;
#else
  DWORDLONG                  SteppingDelta;
#endif
  KSPROPERTY_BOUNDS_LONGLONG Bounds;
} KSPROPERTY_STEPPING_LONGLONG, *PKSPROPERTY_STEPPING_LONGLONG;

Members

SteppingDelta

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

Bounds

Specifies a structure of type KSPROPERTY_BOUNDS_LONGLONG 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_LONGLONG

KSPROPERTY_MEMBERSLIST