mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 10:04:49 +00:00
Not used any longer
svn path=/trunk/; revision=1204
This commit is contained in:
parent
539b0a1259
commit
5b2343f9f1
1 changed files with 0 additions and 32 deletions
|
@ -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
|
Loading…
Reference in a new issue