mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-02-16 13:55:29 +00:00
19 lines
520 B
C#
19 lines
520 B
C#
/// <remarks>
|
|
/// Information sourced from https://docwiki.embarcadero.com/Libraries/Sydney/en/System.TPackageTypeInfo
|
|
/// </remarks>
|
|
namespace SabreTools.Models.Delphi
|
|
{
|
|
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; }
|
|
|
|
public int UnitCount { get; set; }
|
|
|
|
public string[]? UnitNames { get; set; }
|
|
}
|
|
} |