Files

13 lines
440 B
C#
Raw Permalink Normal View History

2024-05-15 14:00:30 -04:00
using System.Runtime.InteropServices;
namespace SabreTools.Models.PortableExecutable
2023-09-04 00:11:04 -04:00
{
/// <summary>
2024-04-23 16:42:29 -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/normalmenuitem"/>
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/popupmenuitem"/>
2024-05-15 14:00:30 -04:00
[StructLayout(LayoutKind.Sequential)]
2024-04-23 16:42:29 -04:00
public abstract class MenuItem { }
2023-09-04 00:11:04 -04:00
}