Files

22 lines
599 B
C#
Raw Permalink Normal View History

2025-09-26 12:09:34 -04:00
using System.Runtime.InteropServices;
/// <remarks>
/// Information sourced from https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.PackageUnitEntry
/// </remarks>
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.Delphi
2025-09-26 12:09:34 -04:00
{
[StructLayout(LayoutKind.Sequential)]
public class PackageUnitEntry
{
/// <remarks>
/// System-dependent pointer type, assumed to be encoded for x86
/// </remarks>
public uint Init;
/// <remarks>
/// System-dependent pointer type, assumed to be encoded for x86
/// </remarks>
public uint FInit;
}
2025-10-30 21:30:41 -04:00
}