[WIN32K/GDI32]

Add official ENTRY structure definition

svn path=/trunk/; revision=51417
This commit is contained in:
Timo Kreuzer
2011-04-21 21:48:24 +00:00
parent 7037613d3d
commit 35a1d66de7
+24
View File
@@ -229,6 +229,30 @@ typedef struct _GDI_TABLE_ENTRY
PVOID UserData; /* pUser Points to the user mode structure, usually NULL though */
} GDI_TABLE_ENTRY, *PGDI_TABLE_ENTRY;
typedef struct _ENTRY
{
union _EINFO
{
struct _BASEOBJECT *pobj;
HGDIOBJ hFree;
} einfo;
union _OBJECTOWNER
{
struct _OBJECTOWNER_S
{
unsigned Lock:1;
unsigned Pid_Shifted:31;
} Share;
ULONG ulObj;
} ObjectOwner;
USHORT FullUnique;
UCHAR Objt;
UCHAR Flags;
PVOID pUser;
} ENTRY, *PENTRY;
/*
* User space only structure!
*/