// prntfont.h
typedef struct _KERNDATA {
DWORD dwSize;
DWORD dwKernPairNum;
FD_KERNINGPAIR KernPair[1];
} KERNDATA, *PKERNDATA;
View the official Windows Driver Kit DDI referenceNo description available.
The KERNDATA structure is used for describing printer kerning pairs.
dwSizeSpecifies the size, in bytes, of KERNDATA structure, including the KernPair array.
dwKernPairNumSpecifies the number of elements in the KernPair array.
KernPairIs an array of FD_KERNINGPAIR structures.
A .ufm file's KERNDATA structures are accessed by a pointer in the file's UNIFM_HDR structure.