summaryrefslogtreecommitdiffstats
path: root/cpukit/zlib/contrib
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2005-10-28 07:22:49 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2005-10-28 07:22:49 +0000
commitd1fd7e597d0ccd31012127fa33c607c5684800c1 (patch)
treef9ff3460325425fbd2e0aae7902bf4a6ccca0e23 /cpukit/zlib/contrib
parentImport from zlib-1.2.4 (diff)
downloadrtems-d1fd7e597d0ccd31012127fa33c607c5684800c1.tar.bz2
Import from zlib-1.2.4
Diffstat (limited to 'cpukit/zlib/contrib')
-rw-r--r--cpukit/zlib/contrib/dotzlib/DotZLib.chmbin72728 -> 72726 bytes
-rw-r--r--cpukit/zlib/contrib/dotzlib/DotZLib/CodecBase.cs8
-rw-r--r--cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs6
3 files changed, 7 insertions, 7 deletions
diff --git a/cpukit/zlib/contrib/dotzlib/DotZLib.chm b/cpukit/zlib/contrib/dotzlib/DotZLib.chm
index 0bc7df76e4..f214a444ae 100644
--- a/cpukit/zlib/contrib/dotzlib/DotZLib.chm
+++ b/cpukit/zlib/contrib/dotzlib/DotZLib.chm
Binary files differ
diff --git a/cpukit/zlib/contrib/dotzlib/DotZLib/CodecBase.cs b/cpukit/zlib/contrib/dotzlib/DotZLib/CodecBase.cs
index 954db7db05..42e6da3a56 100644
--- a/cpukit/zlib/contrib/dotzlib/DotZLib/CodecBase.cs
+++ b/cpukit/zlib/contrib/dotzlib/DotZLib/CodecBase.cs
@@ -1,7 +1,7 @@
//
// © Copyright Henrik Ravn 2004
//
-// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
+// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
@@ -19,7 +19,7 @@ namespace DotZLib
#region Data members
/// <summary>
- /// Instance of the internal zlib buffer structure that is
+ /// Instance of the internal zlib buffer structure that is
/// passed to all functions in the zlib dll
/// </summary>
internal ZStream _ztream = new ZStream();
@@ -45,7 +45,7 @@ namespace DotZLib
#endregion
/// <summary>
- /// Initializes a new instance of the <c>CodeBase</c> class.
+ /// Initializes a new instance of the <c>CodeBase</c> class.
/// </summary>
public CodecBase()
{
@@ -77,7 +77,7 @@ namespace DotZLib
if (_ztream.total_out > 0)
{
if (DataAvailable != null)
- DataAvailable( _outBuffer, 0, (int)_ztream.total_out);
+ DataAvailable( _outBuffer, 0, (int)_ztream.total_out);
resetOutput();
}
}
diff --git a/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs b/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
index 4e60cda078..8ed5451d66 100644
--- a/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
+++ b/cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
@@ -1,7 +1,7 @@
//
// © Copyright Henrik Ravn 2004
//
-// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
+// Use, modification and distribution are subject to the Boost Software License, Version 1.0.
// (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
//
@@ -11,7 +11,7 @@ using System.Runtime.InteropServices;
namespace DotZLib
{
-
+
/// <summary>
/// Implements a data decompressor, using the inflate algorithm in the ZLib dll
/// </summary>
@@ -84,7 +84,7 @@ namespace DotZLib
public override void Finish()
{
int err;
- do
+ do
{
err = inflate(ref _ztream, (int)FlushTypes.Finish);
OnDataAvailable();