net/JetBrains.FormatRipper/src/MachO/Impl/CS_SuperBlob.cs (17 lines of code) (raw):
using System;
using System.Diagnostics.CodeAnalysis;
using System.Runtime.InteropServices;
namespace JetBrains.FormatRipper.MachO.Impl
{
[SuppressMessage("ReSharper", "IdentifierTypo")]
[SuppressMessage("ReSharper", "InconsistentNaming")]
[SuppressMessage("ReSharper", "FieldCanBeMadeReadOnly.Global")]
[SuppressMessage("ReSharper", "MemberCanBePrivate.Global")]
[StructLayout(LayoutKind.Sequential)]
internal struct CS_SuperBlob
{
internal UInt32 magic; /* magic number */
internal UInt32 length; /* total length of SuperBlob */
internal UInt32 count;
}
}