From 253eef3eda27d0f1335a6d9394a90f1069269ab6 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Tue, 12 Aug 2003 20:16:22 +0000 Subject: [PATCH] forgot some stuff for STROBJ, this clears it up, sorry. svn path=/trunk/; revision=5542 --- reactos/include/ddk/winddi.h | 30 +++++++++++++++++++++++++----- 1 file changed, 25 insertions(+), 5 deletions(-) diff --git a/reactos/include/ddk/winddi.h b/reactos/include/ddk/winddi.h index 9e4c8c8d554..58f594dd7f2 100644 --- a/reactos/include/ddk/winddi.h +++ b/reactos/include/ddk/winddi.h @@ -671,14 +671,34 @@ typedef struct _XFORMOBJ /* FIXME: what does this beast look like? */ } XFORMOBJ, *PXFORMOBJ; +typedef struct _GLYPHBITS +{ + POINTL ptlOrigin; + SIZEL sizlBitmap; + BYTE aj[1]; +} GLYPHBITS; + +typedef union _GLYPHDEF +{ + GLYPHBITS *pgb; + PATHOBJ *ppo; +} GLYPHDEF; + +typedef struct _GLYPHPOS +{ + HGLYPH hg; + GLYPHDEF *pgdf; + POINTL *ptl; +} GLYPHPOS, *PGLYPHPOS; + typedef struct _STROBJ { - ULONG cGlyphs; - FLONG flAccel; - ULONG ulCharInc; - RECTL rclBkGround; + ULONG cGlyphs; + LONG flAccel; + ULONG ulCharInc; + RECTL rclBkGround; GLYPHPOS *pgp; - LPWSTR pwszOrg; + LPWSTR pwszOrg; } STROBJ, *PSTROBJ; /*