mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-04-20 05:03:11 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.Serialization` still builds the normal Nuget package that is used by all other projects and includes all namespaces.
22 lines
940 B
C#
22 lines
940 B
C#
namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries
|
|
{
|
|
/// <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 : ResourceDataType
|
|
{
|
|
/// <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>
|
|
public DirEntry[] DE { get; set; } = [];
|
|
}
|
|
}
|