1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
namespace ARMeilleure.CodeGen.Unwinding { struct UnwindInfo { public const int Stride = 4; // Bytes. public UnwindPushEntry[] PushEntries { get; } public int PrologSize { get; } public UnwindInfo(UnwindPushEntry[] pushEntries, int prologSize) { PushEntries = pushEntries; PrologSize = prologSize; } } }