Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
The FD_GLYPHSET structure is used to define the mappings from Unicode characters to glyph handles.
Syntax
typedef struct _FD_GLYPHSET {
ULONG cjThis;
FLONG flAccel;
ULONG cGlyphsSupported;
ULONG cRuns;
WCRUN awcrun[1];
} FD_GLYPHSET, *PFD_GLYPHSET;
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_8BIT_HANDLES | All handles are 8-bit quantities. |
| GS_16BIT_HANDLES | All handles are 16-bit quantities. |
| GS_UNICODE_HANDLES | For all runs in this structure, 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 WCRUN structures in the awcrun array.
awcrun[1]
Is an array of WCRUN structures.
Requirements
| Requirement | Value |
|---|---|
| Header | winddi.h (include Winddi.h) |