-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathArchiveDictionarySizes.cs
More file actions
81 lines (67 loc) · 1.18 KB
/
ArchiveDictionarySizes.cs
File metadata and controls
81 lines (67 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// Copyright (c) Files Community
// Licensed under the MIT License.
namespace Files.App.Data.Enums
{
/// <summary>
/// Defines constants that specify archive dictionary size for 7z LZMA/LZMA2.
/// </summary>
public enum ArchiveDictionarySizes
{
/// <summary>
/// Automatic (default based on compression level).
/// </summary>
Auto,
/// <summary>
/// 64 KB dictionary.
/// </summary>
Kb64,
/// <summary>
/// 256 KB dictionary.
/// </summary>
Kb256,
/// <summary>
/// 1 MB dictionary.
/// </summary>
Mb1,
/// <summary>
/// 2 MB dictionary.
/// </summary>
Mb2,
/// <summary>
/// 4 MB dictionary.
/// </summary>
Mb4,
/// <summary>
/// 8 MB dictionary.
/// </summary>
Mb8,
/// <summary>
/// 16 MB dictionary.
/// </summary>
Mb16,
/// <summary>
/// 32 MB dictionary.
/// </summary>
Mb32,
/// <summary>
/// 64 MB dictionary.
/// </summary>
Mb64,
/// <summary>
/// 128 MB dictionary.
/// </summary>
Mb128,
/// <summary>
/// 256 MB dictionary.
/// </summary>
Mb256,
/// <summary>
/// 512 MB dictionary.
/// </summary>
Mb512,
/// <summary>
/// 1024 MB dictionary.
/// </summary>
Mb1024,
}
}