Delphi model cleanup

This commit is contained in:
Matt Nadareski
2025-10-30 21:30:41 -04:00
parent b2d31bb87e
commit 0e4235c8ba
4 changed files with 8 additions and 8 deletions

View File

@@ -11,4 +11,4 @@ namespace SabreTools.Data.Models.Delphi
public static readonly byte[] DVCLALEnterprise = [0x26, 0x3D, 0x4F, 0x38, 0xC2, 0x82, 0x37, 0xB8, 0xF3, 0x24, 0x42, 0x03, 0x17, 0x9B, 0x3A, 0x83];
}
}
}

View File

@@ -7,8 +7,8 @@ namespace SabreTools.Data.Models.Delphi
{
public int UnitCount { get; set; }
public PackageUnitEntry[]? UnitInfo { get; set; }
public PackageUnitEntry[] UnitInfo { get; set; }
public PackageTypeInfo? TypeInfo { get; set; }
public PackageTypeInfo TypeInfo { get; set; }
}
}
}

View File

@@ -10,10 +10,10 @@ namespace SabreTools.Data.Models.Delphi
/// <remarks>
/// System-dependent pointer type, assumed to be encoded for x86
/// </remarks>
public uint[]? TypeTable { get; set; }
public uint[] TypeTable { get; set; }
public int UnitCount { get; set; }
public string[]? UnitNames { get; set; }
public string[] UnitNames { get; set; }
}
}
}

View File

@@ -18,4 +18,4 @@ namespace SabreTools.Data.Models.Delphi
/// </remarks>
public uint FInit;
}
}
}