// ks.h
typedef enum {
KSSTATE_STOP,
KSSTATE_ACQUIRE,
KSSTATE_PAUSE,
KSSTATE_RUN
} KSSTATE, *PKSSTATE;
View the official Windows Driver Kit DDI reference
No description available.
The KSSTATE enumeration lists possible states of a kernel streaming object.
KSSTATE_STOP
Indicates that the object is in minimum resource consumption mode.
KSSTATE_ACQUIRE
Indicates that the object is acquiring resources.
KSSTATE_PAUSE
Indicates that the object is preparing to make instant transition to Run state.
KSSTATE_RUN
Indicates that the object is actively streaming.