From 685a373f230b732a8a8bb793a1ef6325ba1fcb4a Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Mon, 29 Dec 2014 13:12:15 +0000 Subject: [PATCH] [WINE] Add LOGBRUSH16 and LOGPEN16 to wingdi16.h svn path=/trunk/; revision=65887 --- reactos/include/reactos/wine/wingdi16.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/reactos/include/reactos/wine/wingdi16.h b/reactos/include/reactos/wine/wingdi16.h index 95b1e286ad5..35370d0bd07 100644 --- a/reactos/include/reactos/wine/wingdi16.h +++ b/reactos/include/reactos/wine/wingdi16.h @@ -27,6 +27,13 @@ #include +typedef struct +{ + UINT16 lbStyle; + COLORREF lbColor; + INT16 lbHatch; +} LOGBRUSH16, *LPLOGBRUSH16; + typedef struct { INT16 lfHeight; @@ -53,6 +60,13 @@ typedef struct HMETAFILE16 hMF; } METAFILEPICT16, *LPMETAFILEPICT16; +typedef struct +{ + UINT16 lopnStyle; + POINT16 lopnWidth; + COLORREF lopnColor; +} LOGPEN16, *LPLOGPEN16; + #include #endif /* __WINE_WINE_WINGDI16_H */