Decode "PX" system area.

This commit is contained in:
2019-07-28 17:46:09 +01:00
parent ebc775fec2
commit 3c09d6873b
6 changed files with 149 additions and 74 deletions

View File

@@ -50,18 +50,18 @@ namespace DiscImageChef.Filesystems.ISO9660
[Flags]
enum PosixMode : uint
{
OwnerRead = 0x100,
OwnerWrite = 0x80,
OwnerExecute = 0x40,
GroupRead = 0x20,
GroupWrite = 0x10,
GroupExecute = 0x8,
OtherRead = 0x4,
OtherWrite = 0x2,
OtherExecute = 0x1,
SetUID = 0x800,
SetGid = 0x400,
IsVTX = 0x200,
OwnerRead = 0x0100,
OwnerWrite = 0x0080,
OwnerExecute = 0x0040,
GroupRead = 0x0020,
GroupWrite = 0x0010,
GroupExecute = 0x0008,
OtherRead = 0x0004,
OtherWrite = 0x0002,
OtherExecute = 0x0001,
SetUID = 0x0800,
SetGid = 0x0400,
IsVTX = 0x0200,
Socket = 0xC000,
Symlink = 0xA000,
Regular = 0x8000,