typedef struct _WCRUN {
WCHAR wcLow;
USHORT cGlyphs;
HGLYPH *phg;
} WCRUN, *PWCRUN;
The WCRUN structure describes a run of HGLYPH structures.
Members
wcLow
The first character in the run.
cGlyphs
A count of characters in the run.
phg
A pointer to an array of HGLYPH structures that correspond to this run. If this member is null, then all characters in this run can be converted to HGLYPH structures by a simple zero extension.
Comments
GDI relies on the runs being arranged in increasing order by code points. A binary search is made through the list of runs.
See Also