Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'CPP/7zip/Archive/Zip/ZipHeader.h')
-rw-r--r--CPP/7zip/Archive/Zip/ZipHeader.h31
1 files changed, 1 insertions, 30 deletions
diff --git a/CPP/7zip/Archive/Zip/ZipHeader.h b/CPP/7zip/Archive/Zip/ZipHeader.h
index c109992c..18ba064a 100644
--- a/CPP/7zip/Archive/Zip/ZipHeader.h
+++ b/CPP/7zip/Archive/Zip/ZipHeader.h
@@ -153,36 +153,7 @@ namespace NFileHeader
};
}
- namespace NUnixAttrib
- {
- const UInt32 kIFMT = 0170000; // file type mask
-
- const UInt32 kIFDIR = 0040000; // directory
- const UInt32 kIFREG = 0100000; // regular file
- const UInt32 kIFSOCK = 0140000; // socket (BSD, not SysV or Amiga)
- const UInt32 kIFLNK = 0120000; // symbolic link (not SysV, Amiga)
- const UInt32 kIFBLK = 0060000; // block special (not Amiga)
- const UInt32 kIFCHR = 0020000; // character special (not Amiga)
- const UInt32 kIFIFO = 0010000; // fifo (BCC, not MSC or Amiga)
-
- const UInt32 kISUID = 04000; // set user id on execution
- const UInt32 kISGID = 02000; // set group id on execution
- const UInt32 kISVTX = 01000; // directory permissions control
- const UInt32 kENFMT = kISGID; // record locking enforcement flag
- const UInt32 kIRWXU = 00700; // read, write, execute: owner
- const UInt32 kIRUSR = 00400; // read permission: owner
- const UInt32 kIWUSR = 00200; // write permission: owner
- const UInt32 kIXUSR = 00100; // execute permission: owner
- const UInt32 kIRWXG = 00070; // read, write, execute: group
- const UInt32 kIRGRP = 00040; // read permission: group
- const UInt32 kIWGRP = 00020; // write permission: group
- const UInt32 kIXGRP = 00010; // execute permission: group
- const UInt32 kIRWXO = 00007; // read, write, execute: other
- const UInt32 kIROTH = 00004; // read permission: other
- const UInt32 kIWOTH = 00002; // write permission: other
- const UInt32 kIXOTH = 00001; // execute permission: other
- }
-
+
namespace NAmigaAttrib
{
const UInt32 kIFMT = 06000; // Amiga file type mask