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.
*/
typedef struct
{
ULONG AttrFlags;
COLORREF lbColor;
} BRUSHATTR, *PBRUSHATTR;
typedef struct
{
/* Header for all gdi objects in the handle table.
@ -33,8 +27,8 @@ typedef struct
ULONG flAttrs;
ULONG ulBrushUnique;
BRUSHATTR *pBrushAttr;
BRUSHATTR BrushAttr;
BRUSH_ATTR *pBrushAttr; // Just like DC_ATTR, pointer to user data
BRUSH_ATTR BrushAttr; // " " DCOBJ, internal if pBrushAttr == Zero
POINT ptOrigin;
ULONG bCacheGrabbed;
COLORREF crBack;