Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 164 of file worker.c.
Referenced by KspCreateFilter(), and KspCreatePin().
{ NTSTATUS Status; PKSIWORKER KsWorker; /* check for counted work item parameter */ if (!CountedWorkItem) return STATUS_INVALID_PARAMETER_2; /* create the work ctx */ Status = KsRegisterWorker(WorkQueueType, Worker); /* check for success */ if (NT_SUCCESS(Status)) { /* get ks worker implementation */ KsWorker = *(PKSIWORKER*)Worker; /* store counted work item */ KsWorker->CountedWorkItem = CountedWorkItem; } return Status; }