Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 13 of file close.c.
{ PSERIAL_DEVICE_EXTENSION pDeviceExtension; TRACE_(SERIAL, "IRP_MJ_CLOSE\n"); pDeviceExtension = (PSERIAL_DEVICE_EXTENSION)DeviceObject->DeviceExtension; pDeviceExtension->IsOpened = FALSE; Irp->IoStatus.Information = 0; Irp->IoStatus.Status = STATUS_SUCCESS; IoCompleteRequest(Irp, IO_NO_INCREMENT); return STATUS_SUCCESS; }