typedef union _GLYPHDEF {
GLYPHBITS *pgb;
PATHOBJ *ppo;
} GLYPHDEF;
The GLYPHDEF union identifies individual glyphs. It provides either a pointer to a GLYPHBITS structure or a pointer to a PATHOBJ structure.
Members
pgb
If pgb is defined, this member points to a GLYPHBITS structure. The driver can use the bitmap bits stored in this structure to form the associated glyph on its surface.
ppo
If ppo is defined, this member points to a PATHOBJ structure the driver can examine to extract the path describing the associated glyph.
See Also