// ks.h
KSDDKAPI ULONG KsDecrementCountedWorker(
[in] PKSWORKER Worker
);
View the official Windows Driver Kit DDI reference
No description available.
Decrements the current worker count of a worker previous created by KsRegisterCountedWorker. This should be called after each task within a worker has been completed.
Worker
[in]Contains the previously allocated worker.
Returns the current counter. A count of zero implies that the task list has been completed.
KsDecrementCountedWorker should be called after each task within a worker has been completed. A corresponding call to KsIncrementCountedWorker would have previously incremented the count. KsDecrementCountedWorker may be called at DISPATCH_LEVEL.