Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 132 of file misc.c.
Referenced by IrpStub().
{ PFDO_DEVICE_EXTENSION DeviceExtension; PDEVICE_OBJECT LowerDevice; DeviceExtension = (PFDO_DEVICE_EXTENSION)DeviceObject->DeviceExtension; ASSERT(DeviceExtension->Common.IsFDO); LowerDevice = DeviceExtension->LowerDevice; ASSERT(LowerDevice); TRACE_(SERENUM, "Calling lower device 0x%p\n", LowerDevice); IoSkipCurrentIrpStackLocation(Irp); return IoCallDriver(LowerDevice, Irp); }