mirror of
https://github.com/SabreTools/SabreTools.IO.git
synced 2026-07-08 17:57:02 +00:00
This change looks dramatic, but it's just separating out the already-split namespaces into separate top-level folders. In theory, every single one could be built into their own Nuget package. `SabreTools.IO.Meta` builds the normal Nuget package that is used by all other projects and includes all namespaces. `SabreTools.IO` builds to `SabreTools.IO.Common` to avoid overwriting issues on publish.
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
// ZlibBaseStream.cs
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// Copyright (c) 2009 Dino Chiesa and Microsoft Corporation.
|
|
// All rights reserved.
|
|
//
|
|
// This code module is part of DotNetZip, a zipfile class library.
|
|
//
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// This code is licensed under the Microsoft Public License.
|
|
// See the file License.txt for the license details.
|
|
// More info on: http://dotnetzip.codeplex.com
|
|
//
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// last saved (in emacs):
|
|
// Time-stamp: <2011-August-06 21:22:38>
|
|
//
|
|
// ------------------------------------------------------------------
|
|
//
|
|
// This module defines the ZlibBaseStream class, which is an intnernal
|
|
// base class for DeflateStream, ZlibStream and GZipStream.
|
|
//
|
|
// ------------------------------------------------------------------
|
|
|
|
namespace SabreTools.IO.Compression.Deflate
|
|
{
|
|
internal enum ZlibStreamFlavor
|
|
{
|
|
ZLIB = 1950,
|
|
DEFLATE = 1951,
|
|
GZIP = 1952
|
|
}
|
|
}
|