From 50f5d0807c1ebc7705916c366cf11f19d1f77882 Mon Sep 17 00:00:00 2001 From: Phillip Susi Date: Thu, 26 Apr 2001 01:31:35 +0000 Subject: [PATCH] Added Tail.Overlay.DriverContext to IRP structure svn path=/trunk/; revision=1828 --- reactos/include/ddk/iotypes.h | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/reactos/include/ddk/iotypes.h b/reactos/include/ddk/iotypes.h index 90b42fe11bf..bd70d1c3137 100644 --- a/reactos/include/ddk/iotypes.h +++ b/reactos/include/ddk/iotypes.h @@ -1,4 +1,4 @@ -/* $Id: iotypes.h,v 1.25 2001/04/16 00:44:54 chorns Exp $ +/* $Id: iotypes.h,v 1.26 2001/04/26 01:31:35 phreak Exp $ * */ @@ -345,7 +345,10 @@ typedef struct _IRP { struct { - KDEVICE_QUEUE_ENTRY DeviceQueueEntry; + union { + KDEVICE_QUEUE_ENTRY DeviceQueueEntry; + PVOID DriverContext[4]; + }; struct _ETHREAD* Thread; PCHAR AuxiliaryBuffer; LIST_ENTRY ListEntry;