changed to use proper type for dispatcher header, instead of PVOID in WAIT_BLOCK

svn path=/trunk/; revision=886
This commit is contained in:
Phillip Susi 1999-12-17 23:30:48 +00:00
parent 4ce5c9d3b4
commit 683932b845

View file

@ -23,6 +23,8 @@ typedef VOID (*PKKERNEL_ROUTINE)(struct _KAPC* Apc,
typedef VOID (*PKRUNDOWN_ROUTINE)(struct _KAPC* Apc); typedef VOID (*PKRUNDOWN_ROUTINE)(struct _KAPC* Apc);
struct _DISPATCHER_HEADER;
typedef struct _KWAIT_BLOCK typedef struct _KWAIT_BLOCK
/* /*
* PURPOSE: Object describing the wait a thread is currently performing * PURPOSE: Object describing the wait a thread is currently performing
@ -30,7 +32,7 @@ typedef struct _KWAIT_BLOCK
{ {
LIST_ENTRY WaitListEntry; LIST_ENTRY WaitListEntry;
struct _KTHREAD* Thread; struct _KTHREAD* Thread;
PVOID Object; struct _DISPATCHER_HEADER *Object;
struct _KWAIT_BLOCK* NextWaitBlock; struct _KWAIT_BLOCK* NextWaitBlock;
USHORT WaitKey; USHORT WaitKey;
USHORT WaitType; USHORT WaitType;