You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

19 lines
417 B

namespace com.hitrust.util.GZip
{
using System;
public class GZipConstants
{
public const int FCOMMENT = 0x10;
public const int FEXTRA = 4;
public const int FHCRC = 2;
public const int FNAME = 8;
public const int FTEXT = 1;
public static readonly int GZIP_MAGIC = 0x1f8b;
private GZipConstants()
{
}
}
}