using System.Runtime.InteropServices; /// /// Information sourced from https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.PackageUnitEntry /// namespace SabreTools.Data.Models.Delphi { [StructLayout(LayoutKind.Sequential)] public class PackageUnitEntry { /// /// System-dependent pointer type, assumed to be encoded for x86 /// public uint Init; /// /// System-dependent pointer type, assumed to be encoded for x86 /// public uint FInit; } }