mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-14 21:35:10 +00:00
13 lines
447 B
C#
13 lines
447 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/menuheader"/>
|
|
/// <see href="https://learn.microsoft.com/en-us/windows/win32/menurc/menuex-template-header"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public abstract class MenuHeader { }
|
|
}
|