namespace SabreTools.Models.PortableExecutable { /// /// Defines the header for an extended menu template. This structure definition is for /// explanation only; it is not present in any standard header file. /// /// public sealed class MenuHeaderExtended { /// /// The template version number. This member must be 1 for extended menu templates. /// public ushort Version { get; set; } /// /// The offset to the first MENUEX_TEMPLATE_ITEM structure, relative to the end of /// this structure member. If the first item definition immediately follows the /// dwHelpId member, this member should be 4. /// public ushort Offset { get; set; } /// /// The help identifier of menu bar. /// public uint HelpID { get; set; } } }