[ros-diffs] [jimtabor] 40288: - Fix W32PROCESS, replaced pointer with structure.

jimtabor at svn.reactos.org jimtabor at svn.reactos.org
Sun Mar 29 18:31:28 CEST 2009


Author: jimtabor
Date: Sun Mar 29 20:31:27 2009
New Revision: 40288

URL: http://svn.reactos.org/svn/reactos?rev=40288&view=rev
Log:
- Fix W32PROCESS, replaced pointer with structure.

Modified:
    trunk/reactos/subsystems/win32/win32k/include/win32.h

Modified: trunk/reactos/subsystems/win32/win32k/include/win32.h
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/subsystems/win32/win32k/include/win32.h?rev=40288&r1=40287&r2=40288&view=diff
==============================================================================
--- trunk/reactos/subsystems/win32/win32k/include/win32.h [iso-8859-1] (original)
+++ trunk/reactos/subsystems/win32/win32k/include/win32.h [iso-8859-1] Sun Mar 29 20:31:27 2009
@@ -75,8 +75,8 @@
   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;



More information about the Ros-diffs mailing list