mirror of
https://github.com/reactos/reactos.git
synced 2025-02-25 01:39:30 +00:00
Merge DD structure info into gdi structures.
svn path=/trunk/; revision=31513
This commit is contained in:
parent
ca60bdfbe8
commit
0c9e6b6cac
2 changed files with 7 additions and 6 deletions
|
@ -206,10 +206,11 @@ typedef struct _GDI_TABLE_ENTRY
|
|||
SHORT nCount; /* usage count of object handles */
|
||||
union{ // temp union structure.
|
||||
LONG Type; /* the first 16 bit is the object type including the stock obj flag, the last 16 bits is just the object type */
|
||||
SHORT nUpper:16;
|
||||
CHAR ObjectType:8;
|
||||
CHAR Flags:8;
|
||||
};
|
||||
struct{
|
||||
SHORT FullUnique;
|
||||
CHAR ObjectType;
|
||||
CHAR Flags;
|
||||
};};
|
||||
PVOID UserData; /* Points to the user mode structure, usually NULL though */
|
||||
} GDI_TABLE_ENTRY, *PGDI_TABLE_ENTRY;
|
||||
|
||||
|
|
|
@ -58,9 +58,9 @@ typedef struct _GDIOBJHDR
|
|||
typedef struct _GDIOBJEMPTYHDR
|
||||
{
|
||||
HGDIOBJ hHmgr;
|
||||
PVOID pvEntry;
|
||||
ULONG Count;
|
||||
ULONG lucExcLock;
|
||||
ULONG Tid;
|
||||
PW32THREAD Tid;
|
||||
} GDIOBJEMPTYHDR, *PGDIOBJEMPTYHDR;
|
||||
|
||||
BOOL INTERNAL_CALL GDIOBJ_OwnedByCurrentProcess(PGDI_HANDLE_TABLE HandleTable, HGDIOBJ ObjectHandle);
|
||||
|
|
Loading…
Reference in a new issue