GLYPHDEF union (winddi.h)

The GLYPHDEF union identifies individual glyphs and provides either a pointer to a GLYPHBITS structure or a pointer to a PATHOBJ structure.

Syntax

typedef union _GLYPHDEF {
  GLYPHBITS *pgb;
  PATHOBJ   *ppo;
} GLYPHDEF;

Members

pgb

If pgb is defined, this member is a pointer 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 is a pointer to a PATHOBJ structure the driver can examine to extract the path describing the associated glyph.

Requirements

Requirement Value
Header winddi.h (include Winddi.h)

See also

GLYPHBITS

PATHOBJ