mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Decode "PX" system area.
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user