mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-31 04:13:37 +00:00
forgot some stuff for STROBJ, this clears it up, sorry.
svn path=/trunk/; revision=5542
This commit is contained in:
@@ -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;
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user