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 '7zip/UI/Explorer/ContextMenuFlags.h')
-rwxr-xr-x7zip/UI/Explorer/ContextMenuFlags.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/7zip/UI/Explorer/ContextMenuFlags.h b/7zip/UI/Explorer/ContextMenuFlags.h
index b2f4a3a6..d138baf9 100755
--- a/7zip/UI/Explorer/ContextMenuFlags.h
+++ b/7zip/UI/Explorer/ContextMenuFlags.h
@@ -15,12 +15,20 @@ namespace NContextMenuFlags
const UINT32 kOpen = 1 << 5;
const UINT32 kCompress = 1 << 8;
- const UINT32 kCompressTo = 1 << 9;
+ const UINT32 kCompressTo7z = 1 << 9;
const UINT32 kCompressEmail = 1 << 10;
- const UINT32 kCompressToEmail = 1 << 11;
+ const UINT32 kCompressTo7zEmail = 1 << 11;
+
+ const UINT32 kCompressToZip = 1 << 12;
+ const UINT32 kCompressToZipEmail = 1 << 13;
inline UINT32 GetDefaultFlags() {
- return kOpen | kExtract | kExtractHere | kCompress | kTest; }
+ return
+ kOpen | kTest |
+ kExtract | kExtractHere | kExtractTo |
+ kCompress | kCompressEmail |
+ kCompressTo7z | kCompressTo7zEmail |
+ kCompressToZip | kCompressToZipEmail; }
}
#endif