Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 53 of file dispatcher.cpp.
{ PIO_STACK_LOCATION IoStack; PDISPATCH_CONTEXT DispatchContext; // get current irp stack IoStack = IoGetCurrentIrpStackLocation(Irp); // get dispatch context DispatchContext = (PDISPATCH_CONTEXT)IoStack->FileObject->FsContext; // let IrpTarget handle request return DispatchContext->Target->Write(DeviceObject, Irp); }