Fix layout of ISv3 directory

This commit is contained in:
Matt Nadareski
2024-06-03 11:57:30 -04:00
parent 73b3d4a7a8
commit 494ca175fb

View File

@@ -17,9 +17,13 @@ namespace SabreTools.Models.InstallShieldArchiveV3
public ushort ChunkSize;
/// <summary>
/// Byte-length-prefixed ASCII string
/// Length of the following ASCII string
/// </summary>
public ushort NameLength;
/// <summary>
/// Name as an ASCII string
/// </summary>
[MarshalAs(UnmanagedType.BStr)]
public string? Name;
}
}