mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-25 00:15:15 +00:00
10 lines
174 B
C#
10 lines
174 B
C#
|
|
namespace SharpCompress.Compressor.Rar.VM
|
||
|
|
{
|
||
|
|
internal enum VMFlags
|
||
|
|
{
|
||
|
|
None = 0,
|
||
|
|
VM_FC = 1,
|
||
|
|
VM_FZ = 2,
|
||
|
|
VM_FS = 80000000,
|
||
|
|
}
|
||
|
|
}
|