From 1ca6fc12a8ec0c05190e5c5b7dba7e0acb19442a Mon Sep 17 00:00:00 2001 From: "Louis. Lenders" Date: Sun, 7 May 2006 00:29:54 +0100 Subject: [PATCH] gdi32: Add defines for GLYPHSET and WCRANGE. --- include/wingdi.h | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/include/wingdi.h b/include/wingdi.h index 9375ff9153b..f2fcd21946d 100644 --- a/include/wingdi.h +++ b/include/wingdi.h @@ -3244,6 +3244,19 @@ typedef struct _DRAWPATRECT WORD wPattern; } DRAWPATRECT, *PDRAWPATRECT; +typedef struct tagWCRANGE { + WCHAR wcLow; + USHORT cGlyphs; +} WCRANGE, *PWCRANGE, *LPWCRANGE; + +typedef struct tagGLYPHSET { + DWORD cbThis; + DWORD flAccel; + DWORD cGlyphsSupported; + DWORD cRanges; + WCRANGE ranges[1]; +} GLYPHSET, *PGLYPHSET, *LPGLYPHSET; + INT WINAPI AbortDoc(HDC); BOOL WINAPI AbortPath(HDC); INT WINAPI AddFontResourceA(LPCSTR);