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"/>
|
2026-02-12 13:09:44 -05:00
|
|
|
public sealed class AcceleratorTable : ResourceDataType
|
2025-09-26 12:09:34 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Accelerator table entries
|
|
|
|
|
/// </summary>
|
2025-10-31 13:59:28 -04:00
|
|
|
public AcceleratorTableEntry[] Entries { get; set; } = [];
|
2025-09-26 12:09:34 -04:00
|
|
|
}
|
|
|
|
|
}
|