using System.Runtime.InteropServices; namespace BurnOutSharp.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. /// /// [StructLayout(LayoutKind.Sequential)] public class MenuHeaderExtended { /// /// The template version number. This member must be 1 for extended menu templates. /// public ushort Version; /// /// 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; /// /// The help identifier of menu bar. /// public uint HelpID; } }