mirror of
https://github.com/SabreTools/SabreTools.Models.git
synced 2026-09-24 23:57:18 +00:00
14 lines
361 B
C#
14 lines
361 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace SabreTools.Models.InstallShieldArchiveV3
|
|
{
|
|
/// <see href="https://github.com/wfr/unshieldv3/blob/master/ISArchiveV3.cpp"/>
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public class Directory
|
|
{
|
|
[MarshalAs(UnmanagedType.BStr)]
|
|
public string? Name;
|
|
|
|
public ushort FileCount;
|
|
}
|
|
} |