mirror of
https://github.com/TalAloni/SMBLibrary.git
synced 2025-08-25 16:23:27 +02:00
10 lines
221 B
C#
10 lines
221 B
C#
|
|
namespace SMBLibrary
|
|
{
|
|
public enum CompressionFormat : ushort
|
|
{
|
|
COMPRESSION_FORMAT_NONE = 0x0000,
|
|
COMPRESSION_FORMAT_DEFAULT = 0x0001,
|
|
COMPRESSION_FORMAT_LZNT1 = 0x0002,
|
|
}
|
|
}
|