1 // ContextMenuFlags.h 2 3 #ifndef ZIP7_INC_CONTEXT_MENU_FLAGS_H 4 #define ZIP7_INC_CONTEXT_MENU_FLAGS_H 5 6 namespace NContextMenuFlags 7 { 8 const UInt32 kExtract = 1 << 0; 9 const UInt32 kExtractHere = 1 << 1; 10 const UInt32 kExtractTo = 1 << 2; 11 12 const UInt32 kTest = 1 << 4; 13 const UInt32 kOpen = 1 << 5; 14 const UInt32 kOpenAs = 1 << 6; 15 16 const UInt32 kCompress = 1 << 8; 17 const UInt32 kCompressTo7z = 1 << 9; 18 const UInt32 kCompressEmail = 1 << 10; 19 const UInt32 kCompressTo7zEmail = 1 << 11; 20 const UInt32 kCompressToZip = 1 << 12; 21 const UInt32 kCompressToZipEmail = 1 << 13; 22 23 const UInt32 kCRC_Cascaded = (UInt32)1 << 30; 24 const UInt32 kCRC = (UInt32)1 << 31; 25 } 26 27 #endif 28