mirror of
https://github.com/MobileTooling/Ffu2Vhdx.git
synced 2026-07-27 12:48:20 -07:00
12 lines
189 B
C#
12 lines
189 B
C#
namespace Img2Ffu.Reader.Enums
|
|
{
|
|
public enum CompressionAlgorithm
|
|
{
|
|
None = 0,
|
|
Default = 1,
|
|
LZNT1 = 2,
|
|
XPRESS = 3,
|
|
XPRESS_HUFF = 4
|
|
}
|
|
}
|