// ks.h
KSDDKAPI NTSTATUS KsDispatchSpecificProperty(
PIRP Irp,
PFNKSHANDLER Handler
);
View the official Windows Driver Kit DDI referenceNo description available.
The KsDispatchSpecificProperty function dispatches the property to a specific handler. The function assumes that the caller has previously dispatched this IRP to a handler through the KsPropertyHandler function.
This function can only be called at PASSIVE_LEVEL.
IrpHandlerThe KsDispatchSpecificProperty function returns STATUS_SUCCESS if successful, or if unsuccessful it returns an error.
The KsDispatchSpecificProperty function is intended for additional processing of a property such as completing a pending operation.