Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 78 of file dispatch.c.
Referenced by DispTdiConnect(), DispTdiDisconnect(), DispTdiListen(), DispTdiReceive(), DispTdiReceiveDatagram(), DispTdiSend(), and DispTdiSendDatagram().
{ PIRP Irp = Context; TI_DbgPrint(DEBUG_IRP, ("Called for irp %x (%x, %d).\n", Irp, Status, Count)); Irp->IoStatus.Status = Status; Irp->IoStatus.Information = Count; TI_DbgPrint(MID_TRACE, ("Irp->IoStatus.Status = %x\n", Irp->IoStatus.Status)); TI_DbgPrint(MID_TRACE, ("Irp->IoStatus.Information = %d\n", Irp->IoStatus.Information)); TI_DbgPrint(DEBUG_IRP, ("Completing IRP at (0x%X).\n", Irp)); IRPFinish(Irp, Status); TI_DbgPrint(DEBUG_IRP, ("Done Completing IRP\n")); }