2025-09-26 13:06:18 -04:00
|
|
|
|
namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries
|
2025-09-26 12:09:34 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Contains the information necessary for an application to access a specific font. The structure
|
|
|
|
|
|
/// definition provided here is for explanation only; it is not present in any standard header file.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/fontgrouphdr"/>
|
2026-02-12 13:09:44 -05:00
|
|
|
|
public sealed class FontGroupHeader : ResourceDataType
|
2025-09-26 12:09:34 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The number of individual fonts associated with this resource.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public ushort NumberOfFonts { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// A structure that contains a unique ordinal identifier for each font in the resource. The DE
|
|
|
|
|
|
/// member is a placeholder for the variable-length array of DIRENTRY structures.
|
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
|
public DirEntry[] DE { get; set; } = [];
|
2025-09-26 12:09:34 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|