diff options
author | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2021-01-25 14:28:30 +0800 |
commit | 6eb915c129fc90c6f4c82ae097dd6ffad5239efc (patch) | |
tree | 7dd2be50edf41f36b60fac84696e731c13afe617 /Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs |
+scripts
Diffstat (limited to 'Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs')
-rw-r--r-- | Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs b/Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs new file mode 100644 index 00000000..7eb8f69e --- /dev/null +++ b/Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs @@ -0,0 +1,27 @@ +using System;
+
+namespace Ionic.Zlib
+{
+ internal static class InternalConstants
+ {
+ internal static readonly int MAX_BITS = 15;
+
+ internal static readonly int BL_CODES = 19;
+
+ internal static readonly int D_CODES = 30;
+
+ internal static readonly int LITERALS = 256;
+
+ internal static readonly int LENGTH_CODES = 29;
+
+ internal static readonly int L_CODES = InternalConstants.LITERALS + 1 + InternalConstants.LENGTH_CODES;
+
+ internal static readonly int MAX_BL_BITS = 7;
+
+ internal static readonly int REP_3_6 = 16;
+
+ internal static readonly int REPZ_3_10 = 17;
+
+ internal static readonly int REPZ_11_138 = 18;
+ }
+}
|