diff --git a/reactos/ntoskrnl/io/dpc.c b/reactos/ntoskrnl/io/dpc.c deleted file mode 100644 index e6eeb20ceb3..00000000000 --- a/reactos/ntoskrnl/io/dpc.c +++ /dev/null @@ -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 - -#include - -/* 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