From 6eb915c129fc90c6f4c82ae097dd6ffad5239efc Mon Sep 17 00:00:00 2001 From: chai Date: Mon, 25 Jan 2021 14:28:30 +0800 Subject: +scripts --- .../XUtliPoolLib/Ionic/Zlib/InternalConstants.cs | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs (limited to 'Client/Assets/Scripts/XUtliPoolLib/Ionic/Zlib/InternalConstants.cs') 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; + } +} -- cgit v1.1-26-g67d0