Files
SabreTools.Serialization/SabreTools.Data.Models/Delphi/PackageTypeInfo.cs

20 lines
536 B
C#
Raw Normal View History

2025-09-26 12:09:34 -04:00
/// <remarks>
/// Information sourced from https://docwiki.embarcadero.com/Libraries/Sydney/en/System.TPackageTypeInfo
/// </remarks>
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.Delphi
2025-09-26 12:09:34 -04:00
{
public class PackageTypeInfo
{
public int TypeCount { get; set; }
/// <remarks>
/// System-dependent pointer type, assumed to be encoded for x86
/// </remarks>
public uint[] TypeTable { get; set; } = [];
2025-09-26 12:09:34 -04:00
public int UnitCount { get; set; }
public string[] UnitNames { get; set; } = [];
2025-09-26 12:09:34 -04:00
}
2025-10-30 21:30:41 -04:00
}