- Add Lock point and AVL table pointer to W32PROCESS. This is for EngAllocUserMem and friends.

svn path=/trunk/; revision=40273
This commit is contained in:
James Tabor 2009-03-28 23:06:07 +00:00
parent 4e02761261
commit b2c76fa160

View file

@ -71,10 +71,16 @@ typedef struct _W32PROCESS
FAST_MUTEX DriverObjListLock;
LIST_ENTRY DriverObjListHead;
struct _KBL* KeyboardLayout;
ULONG Flags;
LONG GDIObjects;
LONG UserObjects;
PKEVENT InputIdleEvent;
ULONG Flags;
PKEVENT InputIdleEvent;
PVOID pDCAttrList;
PVOID pBrushAttrList;
DWORD W32Pid;
LONG GDIObjects;
LONG UserObjects;
DWORD cSimpleLock; /* Locking Process during access to structure. */
PVOID pvAvlTable; /* Pointer to AVL Table. */
W32HEAP_USER_MAPPING HeapMappings;
PW32PROCESSINFO ProcessInfo;