Click here to Skip to main content
15,889,200 members
Articles / Programming Languages / C#

Managed C++ wrapper for ZLib

Rate me:
Please Sign up or sign in to vote.
4.56/5 (14 votes)
3 Mar 2005CPOL9 min read 155.4K   5.7K   46  
.NET wrapper for ZLib, written in MC++
/*
DevelopDotNet
http://www.developdotnet.com

File Created by: Alberto Ferrazzoli
Date: 12/06/2004

Class Description:
IChecksum interface type

Notes:

Revision Log - Please mark significant changes in source code in the following format:

Date  -  Time -		Reviewer  -			Comments
19/09/2004			Alberto Ferrazzoli	Added Reset method
*/

#pragma once

namespace DevelopDotNet
{
	namespace Compression
	{
		public __gc __interface IChecksum
		{
			__property unsigned long get_Checksum();

			unsigned long Update(unsigned char buffer __gc[]);
			unsigned long Update(unsigned char buffer __gc[], int offset, int count);
			void Reset();
		};
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Italy Italy
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions