Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygencleanup.c
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: Serial port driver 00004 * FILE: drivers/dd/serial/cleanup.c 00005 * PURPOSE: Serial IRP_MJ_CLEANUP operations 00006 * 00007 * PROGRAMMERS: Hervé Poussineau (hpoussin@reactos.org) 00008 */ 00009 00010 #include "serial.h" 00011 00012 NTSTATUS NTAPI 00013 SerialCleanup( 00014 IN PDEVICE_OBJECT DeviceObject, 00015 IN PIRP Irp) 00016 { 00017 TRACE_(SERIAL, "IRP_MJ_CLEANUP\n"); 00018 Irp->IoStatus.Information = 0; 00019 Irp->IoStatus.Status = STATUS_SUCCESS; 00020 IoCompleteRequest(Irp, IO_NO_INCREMENT); 00021 return STATUS_SUCCESS; 00022 } Generated on Sun May 27 2012 04:21:23 for ReactOS by
1.7.6.1
|