// prntfont.h
typedef struct _WIDTHTABLE {
DWORD dwSize;
DWORD dwRunNum;
WIDTHRUN WidthRun[1];
} WIDTHTABLE, *PWIDTHTABLE;
View the official Windows Driver Kit DDI referenceNo description available.
The WIDTHTABLE structure is used to define the contents of Unidrv font metrics files (.ufm files).
dwSizeSpecifies the size, in bytes, of the WIDTHTABLE structure, including the WidthRun array.
dwRunNumSpecifies the number of elements in the WidthRun array.
WidthRunIs an array of WIDTHRUN structures.
A .ufm file's WIDTHTABLE structure, which describes character widths, is accessed by a pointer in the file's UNIFM_HDR structure.