set DRIVER_DISPATCH where needed

svn path=/trunk/; revision=30643
This commit is contained in:
Christoph von Wittich 2007-11-21 19:37:33 +00:00
parent 8780344b1b
commit 7e90f1d184
3 changed files with 3 additions and 2 deletions

View file

@ -181,7 +181,7 @@ VOID NTAPI WaitForControllerInterrupt(PCONTROLLER_INFO ControllerInfo)
KeClearEvent(&ControllerInfo->SynchEvent);
}
static DRIVER_DISPATCH CreateClose;
static NTSTATUS NTAPI CreateClose(PDEVICE_OBJECT DeviceObject,
PIRP Irp)
/*

View file

@ -24,6 +24,7 @@
* 15-Feb-2004 vizzini - Created
*/
DRIVER_DISPATCH DeviceIoctl;
NTSTATUS NTAPI DeviceIoctl(PDEVICE_OBJECT DeviceObject,
PIRP Irp);

View file

@ -24,7 +24,7 @@
* 15-Feb-2004 vizzini - Created
*/
DRIVER_DISPATCH ReadWrite;
NTSTATUS NTAPI ReadWrite(PDEVICE_OBJECT DeviceObject,
PIRP Irp);