Not used any longer

svn path=/trunk/; revision=1204
This commit is contained in:
Eric Kohl 2000-06-18 17:39:57 +00:00
parent 539b0a1259
commit 5b2343f9f1

View file

@ -1,32 +0,0 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS kernel
* FILE: ntoskrnl/io/dpc.c
* PURPOSE: io manager dpc functions
* PROGRAMMER: David Welch (welch@mcmail.com)
* UPDATE HISTORY:
* Created 22/05/98
*/
/* INCLUDES *****************************************************************/
#include <ddk/ntddk.h>
#include <internal/debug.h>
/* FUNCTIONS *****************************************************************/
#if 0
VOID IoInitializeDpcRequest(PDEVICE_OBJECT DeviceObject,
PIO_DPC_ROUTINE DpcRoutine)
{
KeInitializeDpc(&DeviceObject->Dpc,(PKDEFERRED_ROUTINE)DpcRoutine,
DeviceObject);
}
VOID IoRequestDpc(PDEVICE_OBJECT DeviceObject,
PIRP Irp,
PVOID Context)
{
KeInsertQueueDpc(&DeviceObject->Dpc,Irp,Context);
}
#endif