SMBLibrary/SMBLibrary/Enums/FileInformation/CompressionFormat.cs

10 lines
221 B
C#

namespace SMBLibrary
{
public enum CompressionFormat : ushort
{
COMPRESSION_FORMAT_NONE = 0x0000,
COMPRESSION_FORMAT_DEFAULT = 0x0001,
COMPRESSION_FORMAT_LZNT1 = 0x0002,
}
}