Information structure used for GHI_CMD_TEXT and VMI_CMD_TEXT functions. The TEXTBLTINFO structure includes a pointer to DEVFONTINFO.
typedef struct _TEXTBLTINFO {
ULONG ulLength; /* Length of the TEXTBLTINFO structure, in bytes. */
ULONG flOptions; /* Not used. */
ULONG lGlyphCnt; /* Count of glyph indices provided on this call. */
PLONG pGlyphIndicies; /* Pointer to glyph indices. */
ULONG ulFGMix; /* Foreground mix mode. */
ULONG ulBGMix; /* Background mix mode. */
ULONG ulFGColor; /* Foreground colors. */
ULONG ulBGColor; /* Background colors. */
PBMAPINFO pDstBmapInfo; /* Pointer to destination physical surface descriptions. */
PDEVFONTINFO pDevFntInfo; /* Pointer to DEVFONTINFO for additional font information. */
ULONG ulClpCnt; /* Number of clip regions that intersect glyph data. */
PBLTRECT abrClipRects; /* Array of ulClpCnt clip rectangles. */
PPOINTL aptlSrcOrg; /* Array of glyph origin points. */
PBLTRECT abrDst; /* Array of destination rectangles. */
} TEXTBLTINFO;
typedef TEXTBLTINFO *PTEXTBLTINFO;