mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-17 13:56:04 +00:00
13 lines
440 B
C#
13 lines
440 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.PortableExecutable
|
|
{
|
|
/// <summary>
|
|
/// Common base class for menu item types
|
|
/// </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"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public abstract class MenuItem { }
|
|
}
|