unzip initial commit

git-svn-id: svn://kolibrios.org@6725 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
siemargl
2016-11-18 13:40:05 +00:00
parent e4b55f0dfb
commit e9b1c1bac6
423 changed files with 171325 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
#region README
//_____________________________________________________________________________
//
//Sample C# code, .NET Framework 1.1, contributed to the Info-Zip project by
//Adrian Maull, April 2005.
//
//If you have questions or comments, contact me at adrian.maull@sprintpcs.com. Though
//I will try to respond to coments/questions, I do not guarantee such response.
//
//THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
//KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
//IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
//PARTICULAR PURPOSE.
//
//_____________________________________________________________________________
#endregion
using System;
namespace CSharpInfoZip_UnZipSample
{
/// <summary>
/// Summary description for UnZipDLLPrintMessageEventArgs.
/// </summary>
public class UnZipDLLPrintMessageEventArgs : EventArgs
{
private string m_PrintMessage = string.Empty;
public UnZipDLLPrintMessageEventArgs(string msg)
{
m_PrintMessage = msg;
}
public string PrintMessage
{
get {return m_PrintMessage;}
}
}
}