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/in…
==============================================================================
--- 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;