From 494ca175fb4fd96a52cdd711d7a51b140e2b104a Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Mon, 3 Jun 2024 11:57:30 -0400 Subject: [PATCH] Fix layout of ISv3 directory --- InstallShieldArchiveV3/Directory.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/InstallShieldArchiveV3/Directory.cs b/InstallShieldArchiveV3/Directory.cs index 2cbfa7a..8401ac5 100644 --- a/InstallShieldArchiveV3/Directory.cs +++ b/InstallShieldArchiveV3/Directory.cs @@ -17,9 +17,13 @@ namespace SabreTools.Models.InstallShieldArchiveV3 public ushort ChunkSize; /// - /// Byte-length-prefixed ASCII string + /// Length of the following ASCII string + /// + public ushort NameLength; + + /// + /// Name as an ASCII string /// - [MarshalAs(UnmanagedType.BStr)] public string? Name; } } \ No newline at end of file