Files
SabreTools.Serialization/SabreTools.Data.Models/PortableExecutable/Resource/Entries/AcceleratorTable.cs

20 lines
803 B
C#
Raw Normal View History

2025-09-26 12:09:34 -04:00
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.PortableExecutable.Resource.Entries
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// The ACCELTABLEENTRY structure is repeated for all accelerator table entries in the resource.
/// The last entry in the table is flagged with the value 0x0080.
2025-10-30 23:29:24 -04:00
///
2025-09-26 12:09:34 -04:00
/// You can compute the number of elements in the table if you divide the length of the resource
/// by eight. Then your application can randomly access the individual fixed-length entries.
/// </summary>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/acceltableentry"/>
public sealed class AcceleratorTable : ResourceDataType
2025-09-26 12:09:34 -04:00
{
/// <summary>
/// Accelerator table entries
/// </summary>
public AcceleratorTableEntry[] Entries { get; set; } = [];
2025-09-26 12:09:34 -04:00
}
}