mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 23:22:57 +00:00
- 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:
parent
4e02761261
commit
b2c76fa160
1 changed files with 10 additions and 4 deletions
|
@ -71,10 +71,16 @@ typedef struct _W32PROCESS
|
||||||
FAST_MUTEX DriverObjListLock;
|
FAST_MUTEX DriverObjListLock;
|
||||||
LIST_ENTRY DriverObjListHead;
|
LIST_ENTRY DriverObjListHead;
|
||||||
struct _KBL* KeyboardLayout;
|
struct _KBL* KeyboardLayout;
|
||||||
|
|
||||||
ULONG Flags;
|
ULONG Flags;
|
||||||
|
PKEVENT InputIdleEvent;
|
||||||
|
PVOID pDCAttrList;
|
||||||
|
PVOID pBrushAttrList;
|
||||||
|
DWORD W32Pid;
|
||||||
LONG GDIObjects;
|
LONG GDIObjects;
|
||||||
LONG UserObjects;
|
LONG UserObjects;
|
||||||
PKEVENT InputIdleEvent;
|
DWORD cSimpleLock; /* Locking Process during access to structure. */
|
||||||
|
PVOID pvAvlTable; /* Pointer to AVL Table. */
|
||||||
|
|
||||||
W32HEAP_USER_MAPPING HeapMappings;
|
W32HEAP_USER_MAPPING HeapMappings;
|
||||||
PW32PROCESSINFO ProcessInfo;
|
PW32PROCESSINFO ProcessInfo;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue