2023-09-04 00:12:49 -04:00
|
|
|
|
namespace SabreTools.Models.PortableExecutable
|
2023-09-04 00:11:04 -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"/>
|
|
|
|
|
|
public sealed class FontGroupHeader
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// The number of individual fonts associated with this resource.
|
|
|
|
|
|
/// </summary>
|
2023-09-10 21:24:10 -04:00
|
|
|
|
public ushort NumberOfFonts { get; set; }
|
2023-09-04 00:11:04 -04:00
|
|
|
|
|
|
|
|
|
|
/// <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>
|
2023-09-10 21:24:10 -04:00
|
|
|
|
public DirEntry?[]? DE { get; set; }
|
2023-09-04 00:11:04 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|