- Fix W32PROCESS, replaced pointer with structure.
authorJames Tabor <james.tabor@reactos.org>
Sun, 29 Mar 2009 16:31:27 +0000 (16:31 +0000)
committerJames Tabor <james.tabor@reactos.org>
Sun, 29 Mar 2009 16:31:27 +0000 (16:31 +0000)
svn path=/trunk/; revision=40288

reactos/subsystems/win32/win32k/include/win32.h

index 39490d8..5ba70c6 100644 (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;