KERNDATA - NtDoc

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

typedef struct _KERNDATA {
  DWORD          dwSize;
  DWORD          dwKernPairNum;
  FD_KERNINGPAIR KernPair[1];
} KERNDATA, *PKERNDATA;
View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-prntfont-_kerndata)

_KERNDATA structure

Description

The KERNDATA structure is used for describing printer kerning pairs.

Members

dwSize

Specifies the size, in bytes, of KERNDATA structure, including the KernPair array.

dwKernPairNum

Specifies the number of elements in the KernPair array.

KernPair

Is an array of FD_KERNINGPAIR structures.

Remarks

A .ufm file's KERNDATA structures are accessed by a pointer in the file's UNIFM_HDR structure.

See also

FD_KERNINGPAIR

UNIFM_HDR