mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-22 22:57:11 +00:00
Missing? field
This commit is contained in:
@@ -27,6 +27,17 @@ namespace SabreTools.Models.AdvancedInstaller
|
||||
/// <remarks>Doesn't exist in some cases?</remarks>
|
||||
public string? OriginalFilename { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Unknown, possibly a string count?
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// Only seen when the preceeding two fields exist
|
||||
///
|
||||
/// Observed values:
|
||||
/// - 01 00 00 00
|
||||
/// </remarks>
|
||||
public uint? Unknown1 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Pointer to <see cref="Unknown0"/>?
|
||||
/// </summary>
|
||||
@@ -44,7 +55,7 @@ namespace SabreTools.Models.AdvancedInstaller
|
||||
/// Observed values:
|
||||
/// - 64 00 00 00
|
||||
/// </remarks>
|
||||
public uint Unknown1 { get; set; }
|
||||
public uint Unknown2 { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Pointer to <see cref="Unknown0"/> or <see cref="EntryCount"/> ?
|
||||
@@ -74,6 +85,8 @@ namespace SabreTools.Models.AdvancedInstaller
|
||||
/// Relative to the end of the signature
|
||||
///
|
||||
/// At least one case where this does not point correctly?
|
||||
/// Invalid cases have a value of 531 but unknown if this
|
||||
/// is coincidental or not.
|
||||
/// </remarks>
|
||||
public uint FileDataStartPointer { get; set; }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user