// ks.h
typedef struct {
LONGLONG Current;
LONGLONG Stop;
KS_SEEKING_FLAGS CurrentFlags;
KS_SEEKING_FLAGS StopFlags;
} KSPROPERTY_POSITIONS, *PKSPROPERTY_POSITIONS;
View the official Windows Driver Kit DDI referenceNo description available.
The KSPROPERTY_POSITIONS structure specifies the current position and stop position, relative to the total duration of the stream.
CurrentSpecifies the current position as a 64-bit value.
StopSpecifies the stop position as a 64-bit value.
CurrentFlagsA structure of type KS_SEEKING_FLAGS containing flags pertaining to the Current parameter.
StopFlagsA structure of type KS_SEEKING_FLAGS containing flags pertaining to the Stop parameter.
The KSPROPERTY_POSITIONS structure is used with positioning properties in the KSPROPSETID_MediaSeeking property set. These properties correspond to DirectShow's IMediaSeeking::GetPositions and IMediaSeeking::SetPositions.
KSPROPERTY_MEDIASEEKING_POSITIONS