typedef struct _FD_GLYPHSET {
ULONG cjThis;
FLONG flAccel;
ULONG cGlyphsSupported;
ULONG cRuns;
WCRUN awcrun[1];
} FD_GLYPHSET, *PFD_GLYPHSET;
The FD_GLYPHSET structure is used to define the mappings from Unicode characters to glyph handles.
Members
cjThis
Specifies the size, in bytes, of the structure, including the array of WCRUN structures.
flAccel
Specifies accelerator flags. This member must be the following value:
Flags | Meaning |
GS_UNICODE_HANDLES | For all runs in this GLYPHSET, the handle is obtained by zero extending the Unicode code point. |
cGlyphsSupported
Specifies the total number of glyphs in all runs.
cRuns
Specifies the number of RUN structures in the awcrun array.
awcrun
An array of WCRUN structures.
See Also