GETINFO_FONTOBJ - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// printoem.h

typedef struct _GETINFO_FONTOBJ {
  DWORD   dwSize;
  FONTOBJ *pFontObj;
} GETINFO_FONTOBJ, *PGETINFO_FONTOBJ;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-printoem-_getinfo_fontobj)

Description

The GETINFO_FONTOBJ structure is used as input to the UNIFONTOBJ_GetInfo callback function.

Members

dwSize

Specifies the size, in bytes, of the GETINFO_FONTOBJ structure. Supplied by the UNIFONTOBJ_GetInfo caller.

pFontObj

Pointer to an empty FONTOBJ structure. The structure is filled in by Unidrv's UNIFONTOBJ_GetInfo callback function. The pointer is supplied by the UNIFONTOBJ_GetInfo caller.

Remarks

To obtain a font's FONTOBJ structure contents, a rendering plug-in can supply the address of a GETINFO_FONTOBJ structure when calling Unidrv's UNIFONTOBJ_GetInfo callback function.

See also

FONTOBJ

UNIFONTOBJ_GetInfo