Module: wine Branch: refs/heads/master Commit: 1ca6fc12a8ec0c05190e5c5b7dba7e0acb19442a URL: http://source.winehq.org/git/?p=wine.git;a=commit;h=1ca6fc12a8ec0c05190e5c5b...
Author: Louis. Lenders xerox_xerox2000@yahoo.co.uk Date: Sun May 7 00:29:54 2006 +0100
gdi32: Add defines for GLYPHSET and WCRANGE.
---
include/wingdi.h | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-)
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 @@ 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);