- Fix W32PROCESS, replaced pointer with structure.

svn path=/trunk/; revision=40288
This commit is contained in:
James Tabor 2009-03-29 16:31:27 +00:00
parent 264b97f2c4
commit c233cfcaf8

View file

@ -75,8 +75,8 @@ typedef struct _W32PROCESS
DWORD W32Pid;
LONG GDIObjects;
LONG UserObjects;
DWORD cSimpleLock; /* Locking Process during access to structure. */
PVOID pvAvlTable; /* Pointer to AVL Table. */
DWORD cSimpleLock; /* Locking Process during access to structure. */
RTL_AVL_TABLE rtlAvlTable; /* Process AVL Table. */
/* ReactOS */
LIST_ENTRY ClassList;
LIST_ENTRY MenuListHead;