Skip to content
This repository has been archived by the owner on Apr 9, 2024. It is now read-only.

Commit

Permalink
Merge pull request #197 from elihwyma/dev
Browse files Browse the repository at this point in the history
Introduce APFS format
  • Loading branch information
squid-box committed Apr 9, 2024
2 parents 2f30a07 + 6d1a7f0 commit eeb9e42
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions SevenZip/Formats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,12 @@ public enum InArchiveFormat
/// Mach-O file format.
/// </summary>
/// <remarks><a href="https://en.wikipedia.org/wiki/Mach-O">Wikipedia information</a></remarks>
MachO
MachO,
/// <summary>
/// Apple File System Format.
/// </summary>
/// <remarks><a href="https://en.wikipedia.org/wiki/Apple_File_System">Wikipedia information</a></remarks>
Apfs
}

/// <summary>
Expand Down Expand Up @@ -425,7 +430,8 @@ internal static int GetMaxValue(Type type)
{InArchiveFormat.Ntfs, new Guid("23170f69-40c1-278a-1000-000110D90000")},
{InArchiveFormat.Fat, new Guid("23170f69-40c1-278a-1000-000110DA0000")},
{InArchiveFormat.Mbr, new Guid("23170f69-40c1-278a-1000-000110DB0000")},
{InArchiveFormat.MachO, new Guid("23170f69-40c1-278a-1000-000110DF0000")}
{InArchiveFormat.MachO, new Guid("23170f69-40c1-278a-1000-000110DF0000")},
{InArchiveFormat.Apfs, new Guid("23170f69-40c1-278a-1000-000110C30000")}
};

#endregion
Expand Down

0 comments on commit eeb9e42

Please sign in to comment.