From c233cfcaf8bb8bc8c25624ce4c0846bf0ed6482f Mon Sep 17 00:00:00 2001 From: James Tabor Date: Sun, 29 Mar 2009 16:31:27 +0000 Subject: [PATCH] - Fix W32PROCESS, replaced pointer with structure. svn path=/trunk/; revision=40288 --- reactos/subsystems/win32/win32k/include/win32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/subsystems/win32/win32k/include/win32.h b/reactos/subsystems/win32/win32k/include/win32.h index 39490d8e70a..5ba70c6a65b 100644 --- a/reactos/subsystems/win32/win32k/include/win32.h +++ b/reactos/subsystems/win32/win32k/include/win32.h @@ -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;