// ksproxy.h
typedef struct _PIPE_TERMINATION {
ULONG Flags;
ULONG OutsideFactors;
ULONG Weigth;
KS_FRAMING_RANGE PhysicalRange;
KS_FRAMING_RANGE_WEIGHTED OptimalRange;
KS_COMPRESSION Compression;
} PIPE_TERMINATION;
View the official Windows Driver Kit DDI referenceNo description available.
The _PIPE_TERMINATION structure is for proxy use and not recommended for application use. PIPE_TERMINATION contains information that describes the pin terminator of a pipe.
FlagsOutsideFactorsOne of the factors (flags) defining the Pipes properties. The factors (flags) are defined in ksproxy.h as PipeFactor_None through PipeFactor_LogicalEnd.
WeigthThe outside weight.
PhysicalRangeA KS_FRAMING_RANGE structure defining the physical range.
OptimalRangeA KS_FRAMING_RANGE_WEIGHTED structure defining the optimal range.
CompressionRelative to the connected pin on a neighboring filter.