Changeset 400dfb2 in rtems
- Timestamp:
- Oct 28, 2005, 7:22:49 AM (15 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0546a124
- Parents:
- d26ab242 (diff), d1fd7e5 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- cpukit/zlib/contrib/dotzlib
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/zlib/contrib/dotzlib/DotZLib/CodecBase.cs
rd26ab242 r400dfb2 2 2 // © Copyright Henrik Ravn 2004 3 3 // 4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. 4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. 5 5 // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 6 // … … 20 20 21 21 /// <summary> 22 /// Instance of the internal zlib buffer structure that is 22 /// Instance of the internal zlib buffer structure that is 23 23 /// passed to all functions in the zlib dll 24 24 /// </summary> … … 46 46 47 47 /// <summary> 48 /// Initializes a new instance of the <c>CodeBase</c> class. 48 /// Initializes a new instance of the <c>CodeBase</c> class. 49 49 /// </summary> 50 50 public CodecBase() … … 78 78 { 79 79 if (DataAvailable != null) 80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out); 80 DataAvailable( _outBuffer, 0, (int)_ztream.total_out); 81 81 resetOutput(); 82 82 } -
cpukit/zlib/contrib/dotzlib/DotZLib/Inflater.cs
rd26ab242 r400dfb2 2 2 // © Copyright Henrik Ravn 2004 3 3 // 4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. 4 // Use, modification and distribution are subject to the Boost Software License, Version 1.0. 5 5 // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 6 6 // … … 12 12 namespace DotZLib 13 13 { 14 14 15 15 /// <summary> 16 16 /// Implements a data decompressor, using the inflate algorithm in the ZLib dll … … 85 85 { 86 86 int err; 87 do 87 do 88 88 { 89 89 err = inflate(ref _ztream, (int)FlushTypes.Finish);
Note: See TracChangeset
for help on using the changeset viewer.