LibraryFeature.cs 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. /* This file is part of SevenZipSharp.
  2. SevenZipSharp is free software: you can redistribute it and/or modify
  3. it under the terms of the GNU Lesser General Public License as published by
  4. the Free Software Foundation, either version 3 of the License, or
  5. (at your option) any later version.
  6. SevenZipSharp is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. GNU Lesser General Public License for more details.
  10. You should have received a copy of the GNU Lesser General Public License
  11. along with SevenZipSharp. If not, see <http://www.gnu.org/licenses/>.
  12. */
  13. using System;
  14. namespace SevenZip
  15. {
  16. /// <summary>
  17. /// The set of features supported by the library.
  18. /// </summary>
  19. [Flags]
  20. [CLSCompliant(false)]
  21. public enum LibraryFeature : uint
  22. {
  23. /// <summary>
  24. /// Default feature.
  25. /// </summary>
  26. None = 0,
  27. /// <summary>
  28. /// The library can extract 7zip archives compressed with LZMA method.
  29. /// </summary>
  30. Extract7z = 0x1,
  31. /// <summary>
  32. /// The library can extract 7zip archives compressed with LZMA2 method.
  33. /// </summary>
  34. Extract7zLZMA2 = 0x2,
  35. /// <summary>
  36. /// The library can extract 7z archives compressed with all known methods.
  37. /// </summary>
  38. Extract7zAll = Extract7z|Extract7zLZMA2|0x4,
  39. /// <summary>
  40. /// The library can extract zip archives.
  41. /// </summary>
  42. ExtractZip = 0x8,
  43. /// <summary>
  44. /// The library can extract rar archives.
  45. /// </summary>
  46. ExtractRar = 0x10,
  47. /// <summary>
  48. /// The library can extract gzip archives.
  49. /// </summary>
  50. ExtractGzip = 0x20,
  51. /// <summary>
  52. /// The library can extract bzip2 archives.
  53. /// </summary>
  54. ExtractBzip2 = 0x40,
  55. /// <summary>
  56. /// The library can extract tar archives.
  57. /// </summary>
  58. ExtractTar = 0x80,
  59. /// <summary>
  60. /// The library can extract xz archives.
  61. /// </summary>
  62. ExtractXz = 0x100,
  63. /// <summary>
  64. /// The library can extract all types of archives supported.
  65. /// </summary>
  66. ExtractAll = Extract7zAll|ExtractZip|ExtractRar|ExtractGzip|ExtractBzip2|ExtractTar|ExtractXz,
  67. /// <summary>
  68. /// The library can compress data to 7zip archives with LZMA method.
  69. /// </summary>
  70. Compress7z = 0x200,
  71. /// <summary>
  72. /// The library can compress data to 7zip archives with LZMA2 method.
  73. /// </summary>
  74. Compress7zLZMA2 = 0x400,
  75. /// <summary>
  76. /// The library can compress data to 7zip archives with all methods known.
  77. /// </summary>
  78. Compress7zAll = Compress7z|Compress7zLZMA2|0x800,
  79. /// <summary>
  80. /// The library can compress data to tar archives.
  81. /// </summary>
  82. CompressTar = 0x1000,
  83. /// <summary>
  84. /// The library can compress data to gzip archives.
  85. /// </summary>
  86. CompressGzip = 0x2000,
  87. /// <summary>
  88. /// The library can compress data to bzip2 archives.
  89. /// </summary>
  90. CompressBzip2 = 0x4000,
  91. /// <summary>
  92. /// The library can compress data to xz archives.
  93. /// </summary>
  94. CompressXz = 0x8000,
  95. /// <summary>
  96. /// The library can compress data to zip archives.
  97. /// </summary>
  98. CompressZip = 0x10000,
  99. /// <summary>
  100. /// The library can compress data to all types of archives supported.
  101. /// </summary>
  102. CompressAll = Compress7zAll|CompressTar|CompressGzip|CompressBzip2|CompressXz|CompressZip,
  103. /// <summary>
  104. /// The library can modify archives.
  105. /// </summary>
  106. Modify = 0x20000
  107. }
  108. }