Click here to Skip to main content
15,896,606 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.7K   5.7K   46  
.NET wrapper for ZLib, written in MC++
/*
DevelopDotNet
http://www.developdotnet.com

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

Class Description:
DosDateTime type

Notes:

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

Date  -  Time -  Reviewer  -  Comments

*/

#pragma once

using namespace System;

namespace DevelopDotNet
{
	namespace Compression
	{
		private __gc class DosDateTime
		{
		private public:
			DosDateTime(DateTime datetime);
			static DateTime ToDateTime(UInt16 dosDate, UInt16 dosTime);

		private public:
			__property UInt16 get_Date() { return _date; }
			__property UInt16 get_Time() { return _time; }

		private:
			UInt16 _date;
			UInt16 _time;
		};
	}
}

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