12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- namespace CommonMPQ.SharpZipLib.GZip
- {
-
-
-
-
- sealed public class GZipConstants
- {
-
-
-
- public const int GZIP_MAGIC = 0x1F8B;
-
-
-
-
-
-
- public const int FTEXT = 0x1;
-
-
-
-
- public const int FHCRC = 0x2;
-
-
-
-
- public const int FEXTRA = 0x4;
-
-
-
-
- public const int FNAME = 0x8;
-
-
-
-
- public const int FCOMMENT = 0x10;
-
-
-
-
-
- GZipConstants()
- {
- }
- }
- }
|