Files

13 lines
447 B
C#
Raw Permalink Normal View History

2024-04-23 13:30:43 -04:00
using System.Runtime.InteropServices;
namespace SabreTools.Models.PortableExecutable
2023-09-04 00:11:04 -04:00
{
/// <summary>
2024-05-15 14:00:30 -04:00
/// Common base class for menu item types
2023-09-04 00:11:04 -04:00
/// </summary>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/menuheader"/>
2024-05-15 14:00:30 -04:00
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/menuex-template-header"/>
2024-04-23 13:30:43 -04:00
[StructLayout(LayoutKind.Sequential)]
2024-05-15 14:00:30 -04:00
public abstract class MenuHeader { }
2023-09-04 00:11:04 -04:00
}