From e07a1445f468a71d9c7c85553381fe78efc3a95b Mon Sep 17 00:00:00 2001 From: James Tabor Date: Tue, 13 May 2008 23:54:20 +0000 Subject: [PATCH] We have Brush Attributes already define in ntgdihdl.h, its a user space structure. svn path=/trunk/; revision=33510 --- reactos/subsystems/win32/win32k/include/brush.h | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/reactos/subsystems/win32/win32k/include/brush.h b/reactos/subsystems/win32/win32k/include/brush.h index f9f71bdeae8..2d425185e07 100644 --- a/reactos/subsystems/win32/win32k/include/brush.h +++ b/reactos/subsystems/win32/win32k/include/brush.h @@ -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;