Files
SabreTools.Models/Delphi/PackageUnitEntry.cs

21 lines
593 B
C#
Raw Permalink Normal View History

2024-04-23 13:30:43 -04:00
using System.Runtime.InteropServices;
2024-04-02 10:58:20 -04:00
/// <remarks>
/// Information sourced from https://docwiki.embarcadero.com/Libraries/Alexandria/en/System.PackageUnitEntry
/// </remarks>
namespace SabreTools.Models.Delphi
{
2024-04-23 13:30:43 -04:00
[StructLayout(LayoutKind.Sequential)]
2024-04-02 10:58:20 -04:00
public class PackageUnitEntry
{
/// <remarks>
/// System-dependent pointer type, assumed to be encoded for x86
/// </remarks>
2024-04-23 13:30:43 -04:00
public uint Init;
2024-04-02 10:58:20 -04:00
/// <remarks>
/// System-dependent pointer type, assumed to be encoded for x86
/// </remarks>
2024-04-23 13:30:43 -04:00
public uint FInit;
2024-04-02 10:58:20 -04:00
}
}