typedef struct {
ULONG cjThis;
FLONG flCaps;
ULONG cGlyphsSupported;
ULONG cjMaxGlyph1;
ULONG cjMaxGlyph4;
ULONG cjMaxGlyph8;
ULONG cjMaxGlyph32;
} FONTINFO, *PFONTINFO;
The FONTINFO structure contains information regarding a specific font. GDI writes and returns this structure via FONTOBJ_vGetInfo.
Members
cjThis
Size of this FONTINFO structure in BYTEs.
flCaps
Capabilities flags. The allowed flags are FO_DEVICE_FONT and FO_OUTLINE_CAPABLE.
cGlyphsSupported
Number of glyphs in the font.
cjMaxGlyph1
Size of the largest glyph in 1 bit/pixel. A nonzero value implies that 1-bit-per-pixel bitmaps are supported.
cjMaxGlyph4
Size of the largest glyph in 4 bit/pixel. A nonzero value implies that 4-bit-per-pixel bitmaps are supported.
cjMaxGlyph8
Size of the largest glyph in 8 bit/pixel. A nonzero value implies that 8-bit-per-pixel bitmaps are supported.
cjMaxGlyph32
Size of the largest glyph in 32 bit/pixel. A nonzero value implies that 32-bit-per-pixel bitmaps are supported.
See Also