FontGroupHdr
The FontGroupHdr
structure contains the information necessary for an application to access a
specific font.
struct FontGroupHdr {
WORD
NumberOfFonts;
DirEntry DE [1];
};
Members
NumberOfFonts
Specifies the
number of individual fonts associated with this resource.
DE
[1]
Specifies a DirEntry structure that contains a
unique ordinal identifier for each font in the resource. The DE [1] member
is a placeholder for the variable-length array of DirEntry structures.
Remarks
The FontGroupHdr
structure follows the data for the individual fonts in the .RES file. The
resource compiler automatically adds the FontGroupHdr structure,
generally as the last entry in the file.
See Also