We have Brush Attributes already define in ntgdihdl.h, its a user space structure.

svn path=/trunk/; revision=33510
This commit is contained in:
James Tabor 2008-05-13 23:54:20 +00:00
parent f366e9f6c1
commit e07a1445f4

View file

@ -15,12 +15,6 @@
* A MAILING LIST FIRST. * A MAILING LIST FIRST.
*/ */
typedef struct
{
ULONG AttrFlags;
COLORREF lbColor;
} BRUSHATTR, *PBRUSHATTR;
typedef struct typedef struct
{ {
/* Header for all gdi objects in the handle table. /* Header for all gdi objects in the handle table.
@ -33,8 +27,8 @@ typedef struct
ULONG flAttrs; ULONG flAttrs;
ULONG ulBrushUnique; ULONG ulBrushUnique;
BRUSHATTR *pBrushAttr; BRUSH_ATTR *pBrushAttr; // Just like DC_ATTR, pointer to user data
BRUSHATTR BrushAttr; BRUSH_ATTR BrushAttr; // " " DCOBJ, internal if pBrushAttr == Zero
POINT ptOrigin; POINT ptOrigin;
ULONG bCacheGrabbed; ULONG bCacheGrabbed;
COLORREF crBack; COLORREF crBack;