// ks.h
typedef struct {
PVOID Context;
ULONG Proportion;
LONGLONG DeltaTime;
} KSQUALITY, *PKSQUALITY;
View the official Windows Driver Kit DDI referenceNo description available.
The KSQUALITY structure is used to report QM problems in both kernel and user mode to their respective quality managers.
ContextSpecifies a context parameter that was originally passed to the connection.
ProportionIndicates the percentage of frames currently being received that are actually being used. This is expressed in units of one-tenth of a percent, where 1000 is optimal.
DeltaTimeIndicates the delta in native units (as indicated by the Interface) from optimal time at which the frames are being delivered, where a positive number means too late, and a negative number means too early. Zero indicates a correct delta.