gdi32: Add defines for GLYPHSET and WCRANGE.
diff --git a/include/wingdi.h b/include/wingdi.h
index 9375ff9..f2fcd21 100644
--- a/include/wingdi.h
+++ b/include/wingdi.h
@@ -3244,6 +3244,19 @@
     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);