ulThick
FMOutput structure
#include <Fonts.h>
typedef struct FMOutput { Size Offset Description
short errNum; 2 0 (not used)
Handle fontHandle; 4 2 Handle leading to a FontRec structure
unsigned char boldPixel ; 1 6 Used by Quickdraw...
unsigned char italicPixels; 1 7 ... in generating stylistic variations
unsigned char ulOffset; 1 8
unsigned char ulShadow; 1 9
unsigned char ulThick; 1 10
unsigned char shadowPixels; 1 11
char extra; 1 12 Pixels widened by stylistic variation
unsigned char ascent; 1 13 Max distance above baseline (in
pixels)
unsigned char descent; 1 14 Max distance below baseline (in
pixels)
unsigned char widMax; 1 15 Maximum width of any character
char leading; 1 16 Distance between lines
char unused; 1 17 ( unused)
Point numer; 4 18 Scaling factor horiz and vertical
numerators
Point denom; 4 22 Scaling factor horiz and vertical
denominators
} FMOutput; 26
typedef FMOutput *FMOutPtr;

Notes: This structure is used in communication between Quickdraw and the Font
Manager. You won't need this in a standard application program.